View | Details | Raw Unified | Return to bug 10080
Collapse All | Expand All

(-)a/C4/Acquisition.pm (-5 / +5 lines)
Lines 867-873 sub GetPendingOrders { Link Here
867
        AND datecancellationprinted IS NULL";
867
        AND datecancellationprinted IS NULL";
868
    my @query_params;
868
    my @query_params;
869
    my $userenv = C4::Context->userenv;
869
    my $userenv = C4::Context->userenv;
870
    if ( C4::Context->preference("IndependantBranches") ) {
870
    if ( C4::Context->preference("IndependentBranches") ) {
871
        if ( ($userenv) && ( $userenv->{flags} != 1 ) ) {
871
        if ( ($userenv) && ( $userenv->{flags} != 1 ) ) {
872
            $strsth .= " AND (borrowers.branchcode = ?
872
            $strsth .= " AND (borrowers.branchcode = ?
873
                        or borrowers.branchcode  = '')";
873
                        or borrowers.branchcode  = '')";
Lines 1692-1698 sub GetParcel { Link Here
1692
            AND aqorders.datereceived = ? ";
1692
            AND aqorders.datereceived = ? ";
1693
1693
1694
    my @query_params = ( $supplierid, $code, $datereceived );
1694
    my @query_params = ( $supplierid, $code, $datereceived );
1695
    if ( C4::Context->preference("IndependantBranches") ) {
1695
    if ( C4::Context->preference("IndependentBranches") ) {
1696
        my $userenv = C4::Context->userenv;
1696
        my $userenv = C4::Context->userenv;
1697
        if ( ($userenv) && ( $userenv->{flags} != 1 ) ) {
1697
        if ( ($userenv) && ( $userenv->{flags} != 1 ) ) {
1698
            $strsth .= " and (borrowers.branchcode = ?
1698
            $strsth .= " and (borrowers.branchcode = ?
Lines 1911-1917 sub GetLateOrders { Link Here
1911
    if ( defined $estimateddeliverydatefrom and not defined $estimateddeliverydateto ) {
1911
    if ( defined $estimateddeliverydatefrom and not defined $estimateddeliverydateto ) {
1912
        $from .= ' AND ADDDATE(aqbasket.closedate, INTERVAL aqbooksellers.deliverytime DAY) <= CAST(now() AS date)';
1912
        $from .= ' AND ADDDATE(aqbasket.closedate, INTERVAL aqbooksellers.deliverytime DAY) <= CAST(now() AS date)';
1913
    }
1913
    }
1914
    if (C4::Context->preference("IndependantBranches")
1914
    if (C4::Context->preference("IndependentBranches")
1915
            && C4::Context->userenv
1915
            && C4::Context->userenv
1916
            && C4::Context->userenv->{flags} != 1 ) {
1916
            && C4::Context->userenv->{flags} != 1 ) {
1917
        $from .= ' AND borrowers.branchcode LIKE ? ';
1917
        $from .= ' AND borrowers.branchcode LIKE ? ';
Lines 2020-2026 sub GetHistory { Link Here
2020
    LEFT JOIN aqinvoices ON aqorders.invoiceid = aqinvoices.invoiceid";
2020
    LEFT JOIN aqinvoices ON aqorders.invoiceid = aqinvoices.invoiceid";
2021
2021
2022
    $query .= " LEFT JOIN borrowers ON aqbasket.authorisedby=borrowers.borrowernumber"
2022
    $query .= " LEFT JOIN borrowers ON aqbasket.authorisedby=borrowers.borrowernumber"
2023
    if ( C4::Context->preference("IndependantBranches") );
2023
    if ( C4::Context->preference("IndependentBranches") );
2024
2024
2025
    $query .= " WHERE (datecancellationprinted is NULL or datecancellationprinted='0000-00-00') ";
2025
    $query .= " WHERE (datecancellationprinted is NULL or datecancellationprinted='0000-00-00') ";
2026
2026
Lines 2080-2086 sub GetHistory { Link Here
2080
        push @query_params, "%$basketgroupname%";
2080
        push @query_params, "%$basketgroupname%";
2081
    }
2081
    }
2082
2082
2083
    if ( C4::Context->preference("IndependantBranches") ) {
2083
    if ( C4::Context->preference("IndependentBranches") ) {
2084
        my $userenv = C4::Context->userenv;
2084
        my $userenv = C4::Context->userenv;
2085
        if ( $userenv && ($userenv->{flags} || 0) != 1 ) {
2085
        if ( $userenv && ($userenv->{flags} || 0) != 1 ) {
2086
            $query .= " AND (borrowers.branchcode = ? OR borrowers.branchcode ='' ) ";
2086
            $query .= " AND (borrowers.branchcode = ? OR borrowers.branchcode ='' ) ";
(-)a/C4/Auth.pm (-3 / +3 lines)
Lines 346-352 sub get_template_and_user { Link Here
346
            CalendarFirstDayOfWeek      => (C4::Context->preference("CalendarFirstDayOfWeek") eq "Sunday")?0:1,
346
            CalendarFirstDayOfWeek      => (C4::Context->preference("CalendarFirstDayOfWeek") eq "Sunday")?0:1,
347
            CircAutocompl               => C4::Context->preference("CircAutocompl"),
347
            CircAutocompl               => C4::Context->preference("CircAutocompl"),
348
            FRBRizeEditions             => C4::Context->preference("FRBRizeEditions"),
348
            FRBRizeEditions             => C4::Context->preference("FRBRizeEditions"),
349
            IndependantBranches         => C4::Context->preference("IndependantBranches"),
349
            IndependentBranches         => C4::Context->preference("IndependentBranches"),
350
            IntranetNav                 => C4::Context->preference("IntranetNav"),
350
            IntranetNav                 => C4::Context->preference("IntranetNav"),
351
            IntranetmainUserblock       => C4::Context->preference("IntranetmainUserblock"),
351
            IntranetmainUserblock       => C4::Context->preference("IntranetmainUserblock"),
352
            LibraryName                 => C4::Context->preference("LibraryName"),
352
            LibraryName                 => C4::Context->preference("LibraryName"),
Lines 883-889 sub checkauth { Link Here
883
                        $branchname = GetBranchName($branchcode);
883
                        $branchname = GetBranchName($branchcode);
884
                    }
884
                    }
885
                    my $branches = GetBranches();
885
                    my $branches = GetBranches();
886
                    if (C4::Context->boolean_preference('IndependantBranches') && C4::Context->boolean_preference('Autolocation')){
886
                    if (C4::Context->boolean_preference('IndependentBranches') && C4::Context->boolean_preference('Autolocation')){
887
                        # we have to check they are coming from the right ip range
887
                        # we have to check they are coming from the right ip range
888
                        my $domain = $branches->{$branchcode}->{'branchip'};
888
                        my $domain = $branches->{$branchcode}->{'branchip'};
889
                        if ($ip !~ /^$domain/){
889
                        if ($ip !~ /^$domain/){
Lines 1028-1034 sub checkauth { Link Here
1028
        IntranetNav        => C4::Context->preference("IntranetNav"),
1028
        IntranetNav        => C4::Context->preference("IntranetNav"),
1029
        IntranetFavicon    => C4::Context->preference("IntranetFavicon"),
1029
        IntranetFavicon    => C4::Context->preference("IntranetFavicon"),
1030
        intranetuserjs     => C4::Context->preference("intranetuserjs"),
1030
        intranetuserjs     => C4::Context->preference("intranetuserjs"),
1031
        IndependantBranches=> C4::Context->preference("IndependantBranches"),
1031
        IndependentBranches=> C4::Context->preference("IndependentBranches"),
1032
        AutoLocation       => C4::Context->preference("AutoLocation"),
1032
        AutoLocation       => C4::Context->preference("AutoLocation"),
1033
        wrongip            => $info{'wrongip'},
1033
        wrongip            => $info{'wrongip'},
1034
        PatronSelfRegistration => C4::Context->preference("PatronSelfRegistration"),
1034
        PatronSelfRegistration => C4::Context->preference("PatronSelfRegistration"),
(-)a/C4/Boolean.pm (-1 / +1 lines)
Lines 67-73 our %strings = ( Link Here
67
67
68
=item true_p
68
=item true_p
69
69
70
    if ( C4::Boolean::true_p(C4::Context->preference("IndependantBranches")) ) {
70
    if ( C4::Boolean::true_p(C4::Context->preference("IndependentBranches")) ) {
71
    ...
71
    ...
72
    }
72
    }
73
73
(-)a/C4/Branch.pm (-2 / +2 lines)
Lines 69-75 The functions in this module deal with branches. Link Here
69
69
70
  $branches = &GetBranches();
70
  $branches = &GetBranches();
71
71
72
Returns informations about ALL branches, IndependantBranches Insensitive.
72
Returns informations about ALL branches, IndependentBranches Insensitive.
73
GetBranchInfo() returns the same information without the problems of this function 
73
GetBranchInfo() returns the same information without the problems of this function 
74
(namespace collision, mainly).
74
(namespace collision, mainly).
75
75
Lines 143-149 sub GetBranches { Link Here
143
143
144
sub onlymine {
144
sub onlymine {
145
    return 
145
    return 
146
    C4::Context->preference('IndependantBranches') &&
146
    C4::Context->preference('IndependentBranches') &&
147
    C4::Context->userenv                           &&
147
    C4::Context->userenv                           &&
148
    C4::Context->userenv->{flags} %2 != 1          &&
148
    C4::Context->userenv->{flags} %2 != 1          &&
149
    C4::Context->userenv->{branch}                 ;
149
    C4::Context->userenv->{branch}                 ;
(-)a/C4/Circulation.pm (-1 / +1 lines)
Lines 887-893 sub CanBookBeIssued { Link Here
887
        $needsconfirmation{ITEM_LOST} = $code if ( C4::Context->preference("IssueLostItem") eq 'confirm' );
887
        $needsconfirmation{ITEM_LOST} = $code if ( C4::Context->preference("IssueLostItem") eq 'confirm' );
888
        $alerts{ITEM_LOST} = $code if ( C4::Context->preference("IssueLostItem") eq 'alert' );
888
        $alerts{ITEM_LOST} = $code if ( C4::Context->preference("IssueLostItem") eq 'alert' );
889
    }
889
    }
890
    if ( C4::Context->preference("IndependantBranches") ) {
890
    if ( C4::Context->preference("IndependentBranches") ) {
891
        my $userenv = C4::Context->userenv;
891
        my $userenv = C4::Context->userenv;
892
        if ( ($userenv) && ( $userenv->{flags} % 2 != 1 ) ) {
892
        if ( ($userenv) && ( $userenv->{flags} % 2 != 1 ) ) {
893
            $issuingimpossible{ITEMNOTSAMEBRANCH} = 1
893
            $issuingimpossible{ITEMNOTSAMEBRANCH} = 1
(-)a/C4/Items.pm (-3 / +3 lines)
Lines 1253-1259 sub GetItemsInfo { Link Here
1253
            $data->{firstname}     = $idata->{firstname};
1253
            $data->{firstname}     = $idata->{firstname};
1254
            $data->{lastreneweddate} = $idata->{lastreneweddate};
1254
            $data->{lastreneweddate} = $idata->{lastreneweddate};
1255
            $datedue                = $idata->{'date_due'};
1255
            $datedue                = $idata->{'date_due'};
1256
        if (C4::Context->preference("IndependantBranches")){
1256
        if (C4::Context->preference("IndependentBranches")){
1257
        my $userenv = C4::Context->userenv;
1257
        my $userenv = C4::Context->userenv;
1258
        if ( ($userenv) && ( $userenv->{flags} % 2 != 1 ) ) { 
1258
        if ( ($userenv) && ( $userenv->{flags} % 2 != 1 ) ) { 
1259
            $data->{'NOTSAMEBRANCH'} = 1 if ($idata->{'bcode'} ne $userenv->{branch});
1259
            $data->{'NOTSAMEBRANCH'} = 1 if ($idata->{'bcode'} ne $userenv->{branch});
Lines 2214-2220 sub DelItemCheck { Link Here
2214
        $error = "book_on_loan" 
2214
        $error = "book_on_loan" 
2215
    }
2215
    }
2216
    elsif ( !(C4::Context->userenv->{flags} & 1) and
2216
    elsif ( !(C4::Context->userenv->{flags} & 1) and
2217
            C4::Context->preference("IndependantBranches") and
2217
            C4::Context->preference("IndependentBranches") and
2218
           (C4::Context->userenv->{branch} ne
2218
           (C4::Context->userenv->{branch} ne
2219
             $item->{C4::Context->preference("HomeOrHoldingBranch")||'homebranch'}) )
2219
             $item->{C4::Context->preference("HomeOrHoldingBranch")||'homebranch'}) )
2220
    {
2220
    {
Lines 2689-2695 sub PrepareItemrecordDisplay { Link Here
2689
                    # builds list, depending on authorised value...
2689
                    # builds list, depending on authorised value...
2690
                    #---- branch
2690
                    #---- branch
2691
                    if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
2691
                    if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
2692
                        if (   ( C4::Context->preference("IndependantBranches") )
2692
                        if (   ( C4::Context->preference("IndependentBranches") )
2693
                            && ( C4::Context->userenv->{flags} % 2 != 1 ) ) {
2693
                            && ( C4::Context->userenv->{flags} % 2 != 1 ) ) {
2694
                            my $sth = $dbh->prepare( "SELECT branchcode,branchname FROM branches WHERE branchcode = ? ORDER BY branchname" );
2694
                            my $sth = $dbh->prepare( "SELECT branchcode,branchname FROM branches WHERE branchcode = ? ORDER BY branchname" );
2695
                            $sth->execute( C4::Context->userenv->{branch} );
2695
                            $sth->execute( C4::Context->userenv->{branch} );
(-)a/C4/Letters.pm (-1 / +1 lines)
Lines 123-129 sub getletter { Link Here
123
123
124
    $branchcode ||= '';
124
    $branchcode ||= '';
125
125
126
    if ( C4::Context->preference('IndependantBranches')
126
    if ( C4::Context->preference('IndependentBranches')
127
            and $branchcode
127
            and $branchcode
128
            and C4::Context->userenv ) {
128
            and C4::Context->userenv ) {
129
129
(-)a/C4/Members.pm (-4 / +4 lines)
Lines 256-262 sub Search { Link Here
256
    # $showallbranches was not used at the time SearchMember() was mainstreamed into Search().
256
    # $showallbranches was not used at the time SearchMember() was mainstreamed into Search().
257
    # Mentioning for the reference
257
    # Mentioning for the reference
258
258
259
    if ( C4::Context->preference("IndependantBranches") ) { # && !$showallbranches){
259
    if ( C4::Context->preference("IndependentBranches") ) { # && !$showallbranches){
260
        if ( my $userenv = C4::Context->userenv ) {
260
        if ( my $userenv = C4::Context->userenv ) {
261
            my $branch =  $userenv->{'branch'};
261
            my $branch =  $userenv->{'branch'};
262
            if ( ($userenv->{flags} % 2 !=1) && $branch ){
262
            if ( ($userenv->{flags} % 2 !=1) && $branch ){
Lines 2042-2048 sub GetBorrowersToExpunge { Link Here
2042
    my $filterexpiry   = $params->{'expired_before'};
2042
    my $filterexpiry   = $params->{'expired_before'};
2043
    my $filtercategory = $params->{'category_code'};
2043
    my $filtercategory = $params->{'category_code'};
2044
    my $filterbranch   = $params->{'branchcode'} ||
2044
    my $filterbranch   = $params->{'branchcode'} ||
2045
                        ((C4::Context->preference('IndependantBranches') 
2045
                        ((C4::Context->preference('IndependentBranches')
2046
                             && C4::Context->userenv 
2046
                             && C4::Context->userenv 
2047
                             && C4::Context->userenv->{flags} % 2 !=1 
2047
                             && C4::Context->userenv->{flags} % 2 !=1 
2048
                             && C4::Context->userenv->{branch})
2048
                             && C4::Context->userenv->{branch})
Lines 2108-2114 I<$result> is a ref to an array which all elements are a hasref. Link Here
2108
2108
2109
sub GetBorrowersWhoHaveNeverBorrowed {
2109
sub GetBorrowersWhoHaveNeverBorrowed {
2110
    my $filterbranch = shift || 
2110
    my $filterbranch = shift || 
2111
                        ((C4::Context->preference('IndependantBranches') 
2111
                        ((C4::Context->preference('IndependentBranches')
2112
                             && C4::Context->userenv 
2112
                             && C4::Context->userenv 
2113
                             && C4::Context->userenv->{flags} % 2 !=1 
2113
                             && C4::Context->userenv->{flags} % 2 !=1 
2114
                             && C4::Context->userenv->{branch})
2114
                             && C4::Context->userenv->{branch})
Lines 2158-2164 sub GetBorrowersWithIssuesHistoryOlderThan { Link Here
2158
    my $dbh  = C4::Context->dbh;
2158
    my $dbh  = C4::Context->dbh;
2159
    my $date = shift ||POSIX::strftime("%Y-%m-%d",localtime());
2159
    my $date = shift ||POSIX::strftime("%Y-%m-%d",localtime());
2160
    my $filterbranch = shift || 
2160
    my $filterbranch = shift || 
2161
                        ((C4::Context->preference('IndependantBranches') 
2161
                        ((C4::Context->preference('IndependentBranches')
2162
                             && C4::Context->userenv 
2162
                             && C4::Context->userenv 
2163
                             && C4::Context->userenv->{flags} % 2 !=1 
2163
                             && C4::Context->userenv->{flags} % 2 !=1 
2164
                             && C4::Context->userenv->{branch})
2164
                             && C4::Context->userenv->{branch})
(-)a/C4/Reserves.pm (-1 / +1 lines)
Lines 1419-1425 be the target of an item-level hold request. Link Here
1419
Note that IsAvailableForItemLevelRequest() does not
1419
Note that IsAvailableForItemLevelRequest() does not
1420
check if the staff operator is authorized to place
1420
check if the staff operator is authorized to place
1421
a request on the item - in particular,
1421
a request on the item - in particular,
1422
this routine does not check IndependantBranches
1422
this routine does not check IndependentBranches
1423
and canreservefromotherbranches.
1423
and canreservefromotherbranches.
1424
1424
1425
=cut
1425
=cut
(-)a/C4/Serials.pm (-7 / +7 lines)
Lines 216-222 sub GetSerialInformation { Link Here
216
    my $dbh        = C4::Context->dbh;
216
    my $dbh        = C4::Context->dbh;
217
    my $query      = qq|
217
    my $query      = qq|
218
        SELECT serial.*, serial.notes as sernotes, serial.status as serstatus,subscription.*,subscription.subscriptionid as subsid |;
218
        SELECT serial.*, serial.notes as sernotes, serial.status as serstatus,subscription.*,subscription.subscriptionid as subsid |;
219
    if (   C4::Context->preference('IndependantBranches')
219
    if (   C4::Context->preference('IndependentBranches')
220
        && C4::Context->userenv
220
        && C4::Context->userenv
221
        && C4::Context->userenv->{'flags'} != 1
221
        && C4::Context->userenv->{'flags'} != 1
222
        && C4::Context->userenv->{'branch'} ) {
222
        && C4::Context->userenv->{'branch'} ) {
Lines 321-327 sub GetSubscription { Link Here
321
                aqbooksellers.name AS aqbooksellername,
321
                aqbooksellers.name AS aqbooksellername,
322
                biblio.title AS bibliotitle,
322
                biblio.title AS bibliotitle,
323
                subscription.biblionumber as bibnum);
323
                subscription.biblionumber as bibnum);
324
    if (   C4::Context->preference('IndependantBranches')
324
    if (   C4::Context->preference('IndependentBranches')
325
        && C4::Context->userenv
325
        && C4::Context->userenv
326
        && C4::Context->userenv->{'flags'} != 1
326
        && C4::Context->userenv->{'flags'} != 1
327
        && C4::Context->userenv->{'branch'} ) {
327
        && C4::Context->userenv->{'branch'} ) {
Lines 336-342 sub GetSubscription { Link Here
336
       WHERE subscription.subscriptionid = ?
336
       WHERE subscription.subscriptionid = ?
337
    );
337
    );
338
338
339
    #     if (C4::Context->preference('IndependantBranches') &&
339
    #     if (C4::Context->preference('IndependentBranches') &&
340
    #         C4::Context->userenv &&
340
    #         C4::Context->userenv &&
341
    #         C4::Context->userenv->{'flags'} != 1){
341
    #         C4::Context->userenv->{'flags'} != 1){
342
    # #       $debug and warn "flags: ".C4::Context->userenv->{'flags'};
342
    # #       $debug and warn "flags: ".C4::Context->userenv->{'flags'};
Lines 370-376 sub GetFullSubscription { Link Here
370
            biblio.title as bibliotitle,
370
            biblio.title as bibliotitle,
371
            subscription.branchcode AS branchcode,
371
            subscription.branchcode AS branchcode,
372
            subscription.subscriptionid AS subscriptionid |;
372
            subscription.subscriptionid AS subscriptionid |;
373
    if (   C4::Context->preference('IndependantBranches')
373
    if (   C4::Context->preference('IndependentBranches')
374
        && C4::Context->userenv
374
        && C4::Context->userenv
375
        && C4::Context->userenv->{'flags'} != 1
375
        && C4::Context->userenv->{'flags'} != 1
376
        && C4::Context->userenv->{'branch'} ) {
376
        && C4::Context->userenv->{'branch'} ) {
Lines 490-496 sub GetSubscriptionsFromBiblionumber { Link Here
490
        $subs->{ "numberpattern" . $subs->{numberpattern} } = 1;
490
        $subs->{ "numberpattern" . $subs->{numberpattern} } = 1;
491
        $subs->{ "status" . $subs->{'status'} }             = 1;
491
        $subs->{ "status" . $subs->{'status'} }             = 1;
492
        $subs->{'cannotedit'} =
492
        $subs->{'cannotedit'} =
493
          (      C4::Context->preference('IndependantBranches')
493
          (      C4::Context->preference('IndependentBranches')
494
              && C4::Context->userenv
494
              && C4::Context->userenv
495
              && C4::Context->userenv->{flags} % 2 != 1
495
              && C4::Context->userenv->{flags} % 2 != 1
496
              && C4::Context->userenv->{branch}
496
              && C4::Context->userenv->{branch}
Lines 530-536 sub GetFullSubscriptionsFromBiblionumber { Link Here
530
            biblio.title as bibliotitle,
530
            biblio.title as bibliotitle,
531
            subscription.branchcode AS branchcode,
531
            subscription.branchcode AS branchcode,
532
            subscription.subscriptionid AS subscriptionid|;
532
            subscription.subscriptionid AS subscriptionid|;
533
    if (   C4::Context->preference('IndependantBranches')
533
    if (   C4::Context->preference('IndependentBranches')
534
        && C4::Context->userenv
534
        && C4::Context->userenv
535
        && C4::Context->userenv->{'flags'} != 1
535
        && C4::Context->userenv->{'flags'} != 1
536
        && C4::Context->userenv->{'branch'} ) {
536
        && C4::Context->userenv->{'branch'} ) {
Lines 630-636 sub GetSubscriptions { Link Here
630
630
631
    while ( my $line = $sth->fetchrow_hashref ) {
631
    while ( my $line = $sth->fetchrow_hashref ) {
632
        $line->{'cannotedit'} =
632
        $line->{'cannotedit'} =
633
          (      C4::Context->preference('IndependantBranches')
633
          (      C4::Context->preference('IndependentBranches')
634
              && C4::Context->userenv
634
              && C4::Context->userenv
635
              && C4::Context->userenv->{flags} % 2 != 1
635
              && C4::Context->userenv->{flags} % 2 != 1
636
              && C4::Context->userenv->{branch}
636
              && C4::Context->userenv->{branch}
(-)a/C4/Suggestions.pm (-3 / +3 lines)
Lines 132-138 sub SearchSuggestion { Link Here
132
    }
132
    }
133
133
134
    # filter on user branch
134
    # filter on user branch
135
    if ( C4::Context->preference('IndependantBranches') ) {
135
    if ( C4::Context->preference('IndependentBranches') ) {
136
        my $userenv = C4::Context->userenv;
136
        my $userenv = C4::Context->userenv;
137
        if ($userenv) {
137
        if ($userenv) {
138
            if ( ( $userenv->{flags} % 2 ) != 1 && !$suggestion->{branchcode} )
138
            if ( ( $userenv->{flags} % 2 ) != 1 && !$suggestion->{branchcode} )
Lines 339-345 sub GetSuggestionByStatus { Link Here
339
    };
339
    };
340
340
341
    # filter on branch
341
    # filter on branch
342
    if ( C4::Context->preference("IndependantBranches") || $branchcode ) {
342
    if ( C4::Context->preference("IndependentBranches") || $branchcode ) {
343
        my $userenv = C4::Context->userenv;
343
        my $userenv = C4::Context->userenv;
344
        if ($userenv) {
344
        if ($userenv) {
345
            unless ( $userenv->{flags} % 2 == 1 ) {
345
            unless ( $userenv->{flags} % 2 == 1 ) {
Lines 389-395 sub CountSuggestion { Link Here
389
    my $dbh = C4::Context->dbh;
389
    my $dbh = C4::Context->dbh;
390
    my $sth;
390
    my $sth;
391
    my $userenv = C4::Context->userenv;
391
    my $userenv = C4::Context->userenv;
392
    if ( C4::Context->preference("IndependantBranches")
392
    if ( C4::Context->preference("IndependentBranches")
393
        && $userenv->{flags} % 2 != 1 )
393
        && $userenv->{flags} % 2 != 1 )
394
    {
394
    {
395
        my $query = q{
395
        my $query = q{
(-)a/acqui/basket.pl (-2 / +2 lines)
Lines 103-109 if ( $op eq 'delete_confirm' ) { Link Here
103
    $template->param( NO_BOOKSELLER => 1 );
103
    $template->param( NO_BOOKSELLER => 1 );
104
} elsif ( $op eq 'del_basket') {
104
} elsif ( $op eq 'del_basket') {
105
    $template->param( delete_confirm => 1 );
105
    $template->param( delete_confirm => 1 );
106
    if ( C4::Context->preference("IndependantBranches") ) {
106
    if ( C4::Context->preference("IndependentBranches") ) {
107
        my $userenv = C4::Context->userenv;
107
        my $userenv = C4::Context->userenv;
108
        unless ( $userenv->{flags} == 1 ) {
108
        unless ( $userenv->{flags} == 1 ) {
109
            my $validtest = ( $basket->{creationdate} eq '' )
109
            my $validtest = ( $basket->{creationdate} eq '' )
Lines 192-198 if ( $op eq 'delete_confirm' ) { Link Here
192
    print $query->redirect('/cgi-bin/koha/acqui/basket.pl?basketno='.$basket->{'basketno'})
192
    print $query->redirect('/cgi-bin/koha/acqui/basket.pl?basketno='.$basket->{'basketno'})
193
} else {
193
} else {
194
    # get librarian branch...
194
    # get librarian branch...
195
    if ( C4::Context->preference("IndependantBranches") ) {
195
    if ( C4::Context->preference("IndependentBranches") ) {
196
        my $userenv = C4::Context->userenv;
196
        my $userenv = C4::Context->userenv;
197
        unless ( $userenv->{flags} == 1 ) {
197
        unless ( $userenv->{flags} == 1 ) {
198
            my $validtest = ( $basket->{creationdate} eq '' )
198
            my $validtest = ( $basket->{creationdate} eq '' )
(-)a/acqui/neworderempty.pl (-1 / +1 lines)
Lines 229-235 for my $curr ( @rates ) { Link Here
229
}
229
}
230
230
231
# build branches list
231
# build branches list
232
my $onlymine=C4::Context->preference('IndependantBranches') && 
232
my $onlymine=C4::Context->preference('IndependentBranches') &&
233
            C4::Context->userenv && 
233
            C4::Context->userenv && 
234
            C4::Context->userenv->{flags}!=1 && 
234
            C4::Context->userenv->{flags}!=1 && 
235
            C4::Context->userenv->{branch};
235
            C4::Context->userenv->{branch};
(-)a/catalogue/moredetail.pl (-1 / +1 lines)
Lines 172-178 foreach my $item (@items){ Link Here
172
        $item->{status_advisory} = 1;
172
        $item->{status_advisory} = 1;
173
    }
173
    }
174
174
175
    if (C4::Context->preference("IndependantBranches")) {
175
    if (C4::Context->preference("IndependentBranches")) {
176
        #verifying rights
176
        #verifying rights
177
        my $userenv = C4::Context->userenv();
177
        my $userenv = C4::Context->userenv();
178
        unless (($userenv->{'flags'} == 1) or ($userenv->{'branch'} eq $item->{'homebranch'})) {
178
        unless (($userenv->{'flags'} == 1) or ($userenv->{'branch'} eq $item->{'homebranch'})) {
(-)a/cataloguing/addbiblio.pl (-1 / +1 lines)
Lines 172-178 sub build_authorized_values_list { Link Here
172
    #---- branch
172
    #---- branch
173
    if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
173
    if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
174
        #Use GetBranches($onlymine)
174
        #Use GetBranches($onlymine)
175
        my $onlymine=C4::Context->preference('IndependantBranches') && 
175
        my $onlymine=C4::Context->preference('IndependentBranches') &&
176
                C4::Context->userenv && 
176
                C4::Context->userenv && 
177
                C4::Context->userenv->{flags} % 2 == 0 && 
177
                C4::Context->userenv->{flags} % 2 == 0 && 
178
                C4::Context->userenv->{branch};
178
                C4::Context->userenv->{branch};
(-)a/cataloguing/additem.pl (-2 / +2 lines)
Lines 689-695 foreach my $field (@fields) { Link Here
689
						|| $subfieldvalue;
689
						|| $subfieldvalue;
690
        }
690
        }
691
691
692
        if (($field->tag eq $branchtagfield) && ($subfieldcode eq $branchtagsubfield) && C4::Context->preference("IndependantBranches")) {
692
        if (($field->tag eq $branchtagfield) && ($subfieldcode eq $branchtagsubfield) && C4::Context->preference("IndependentBranches")) {
693
            #verifying rights
693
            #verifying rights
694
            my $userenv = C4::Context->userenv();
694
            my $userenv = C4::Context->userenv();
695
            unless (($userenv->{'flags'} == 1) or (($userenv->{'branch'} eq $subfieldvalue))){
695
            unless (($userenv->{'flags'} == 1) or (($userenv->{'branch'} eq $subfieldvalue))){
Lines 750-756 my $i=0; Link Here
750
750
751
my $pref_itemcallnumber = C4::Context->preference('itemcallnumber');
751
my $pref_itemcallnumber = C4::Context->preference('itemcallnumber');
752
752
753
my $onlymine = C4::Context->preference('IndependantBranches') && 
753
my $onlymine = C4::Context->preference('IndependentBranches') &&
754
               C4::Context->userenv                           && 
754
               C4::Context->userenv                           && 
755
               C4::Context->userenv->{flags}!=1               && 
755
               C4::Context->userenv->{flags}!=1               && 
756
               C4::Context->userenv->{branch};
756
               C4::Context->userenv->{branch};
(-)a/circ/circulation-home.pl (-1 / +1 lines)
Lines 38-44 my $fa = getframeworkinfo('FA'); Link Here
38
$template->param( fast_cataloging => 1 ) if (defined $fa);
38
$template->param( fast_cataloging => 1 ) if (defined $fa);
39
39
40
# Checking if the transfer page needs to be displayed
40
# Checking if the transfer page needs to be displayed
41
$template->param( display_transfer => 1 ) if ( ($flags->{'superlibrarian'} == 1) || (C4::Context->preference("IndependantBranches") == 0) );
41
$template->param( display_transfer => 1 ) if ( ($flags->{'superlibrarian'} == 1) || (C4::Context->preference("IndependentBranches") == 0) );
42
42
43
43
44
output_html_with_http_headers $query, $cookie, $template->output;
44
output_html_with_http_headers $query, $cookie, $template->output;
(-)a/circ/overdue.pl (-1 / +1 lines)
Lines 91-97 while (my ($itemtype, $description) =$req->fetchrow) { Link Here
91
        itemtypename => $description,
91
        itemtypename => $description,
92
    };
92
    };
93
}
93
}
94
my $onlymine=C4::Context->preference('IndependantBranches') && 
94
my $onlymine=C4::Context->preference('IndependentBranches') &&
95
             C4::Context->userenv &&
95
             C4::Context->userenv &&
96
             C4::Context->userenv->{flags} % 2 !=1 &&
96
             C4::Context->userenv->{flags} % 2 !=1 &&
97
             C4::Context->userenv->{branch};
97
             C4::Context->userenv->{branch};
(-)a/circ/pendingreserves.pl (-1 / +1 lines)
Lines 151-157 if ( $run_report ) { Link Here
151
    #    multiple patrons have a hold on an item
151
    #    multiple patrons have a hold on an item
152
152
153
153
154
    if (C4::Context->preference('IndependantBranches')){
154
    if (C4::Context->preference('IndependentBranches')){
155
        $strsth .= " AND items.holdingbranch=? ";
155
        $strsth .= " AND items.holdingbranch=? ";
156
        push @query_params, C4::Context->userenv->{'branch'};
156
        push @query_params, C4::Context->userenv->{'branch'};
157
    }
157
    }
(-)a/circ/reserveratios.pl (-1 / +1 lines)
Lines 113-119 my $strsth = Link Here
113
 $sqldatewhere
113
 $sqldatewhere
114
";
114
";
115
115
116
if (C4::Context->preference('IndependantBranches')){
116
if (C4::Context->preference('IndependentBranches')){
117
    $strsth .= " AND items.holdingbranch=? ";
117
    $strsth .= " AND items.holdingbranch=? ";
118
    push @query_params, C4::Context->userenv->{'branch'};
118
    push @query_params, C4::Context->userenv->{'branch'};
119
}
119
}
(-)a/circ/waitingreserves.pl (-1 / +1 lines)
Lines 73-79 if ($item) { Link Here
73
    push @cancel_result, $res if $res;
73
    push @cancel_result, $res if $res;
74
}
74
}
75
75
76
if ( C4::Context->preference('IndependantBranches') ) {
76
if ( C4::Context->preference('IndependentBranches') ) {
77
    undef $all_branches;
77
    undef $all_branches;
78
} else {
78
} else {
79
    $template->param( all_branches_link => $input->url . '?allbranches=1' )
79
    $template->param( all_branches_link => $input->url . '?allbranches=1' )
(-)a/installer/data/mysql/sysprefs.sql (-1 / +1 lines)
Lines 31-37 INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES Link Here
31
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('hidelostitems',0,'If ON, disables display of\"lost\" items in OPAC.','','YesNo');
31
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('hidelostitems',0,'If ON, disables display of\"lost\" items in OPAC.','','YesNo');
32
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('hide_marc',0,'If ON, disables display of MARC fields, subfield codes & indicators (still shows data)',NULL,'YesNo');
32
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('hide_marc',0,'If ON, disables display of MARC fields, subfield codes & indicators (still shows data)',NULL,'YesNo');
33
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('WaitingNotifyAtCheckin',0,'If ON, notify librarians of waiting holds for the patron whose items they are checking in.',NULL,'YesNo');
33
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('WaitingNotifyAtCheckin',0,'If ON, notify librarians of waiting holds for the patron whose items they are checking in.',NULL,'YesNo');
34
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('IndependantBranches',0,'If ON, increases security between libraries',NULL,'YesNo');
34
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('IndependentBranches',0,'If ON, increases security between libraries',NULL,'YesNo');
35
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('IntranetBiblioDefaultView','normal','Choose the default detail view in the staff interface; choose between normal, labeled_marc, marc or isbd','normal|marc|isbd|labeled_marc','Choice');
35
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('IntranetBiblioDefaultView','normal','Choose the default detail view in the staff interface; choose between normal, labeled_marc, marc or isbd','normal|marc|isbd|labeled_marc','Choice');
36
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('intranetcolorstylesheet','','Define the color stylesheet to use in the Staff Client','50','free');
36
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('intranetcolorstylesheet','','Define the color stylesheet to use in the Staff Client','50','free');
37
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('IntranetmainUserblock','','Add a block of HTML that will display on the intranet home page','70|10','Textarea');
37
INSERT INTO `systempreferences` (variable,value,explanation,options,type) VALUES('IntranetmainUserblock','','Add a block of HTML that will display on the intranet home page','70|10','Textarea');
(-)a/installer/data/mysql/updatedatabase.pl (-2 / +8 lines)
Lines 5800-5808 if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { Link Here
5800
5800
5801
$DBversion = "3.09.00.047";
5801
$DBversion = "3.09.00.047";
5802
if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
5802
if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
5803
    # to preserve default behaviour as best as possible, set this new preference differently depending on whether IndependantBranches is set or not
5803
    # to preserve default behaviour as best as possible, set this new preference differently depending on whether IndependentBranches is set or not
5804
    my $prefvalue = 'anywhere';
5804
    my $prefvalue = 'anywhere';
5805
    if (C4::Context->preference("IndependantBranches")) { $prefvalue = 'homeorholdingbranch';}
5805
    if (C4::Context->preference("IndependentBranches")) { $prefvalue = 'homeorholdingbranch';}
5806
    $dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('AllowReturnToBranch', '$prefvalue', 'Where an item may be returned', 'anywhere|homebranch|holdingbranch|homeorholdingbranch', 'Choice');");
5806
    $dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('AllowReturnToBranch', '$prefvalue', 'Where an item may be returned', 'anywhere|homebranch|holdingbranch|homeorholdingbranch', 'Choice');");
5807
5807
5808
    print "Upgrade to $DBversion done: adding AllowReturnToBranch syspref (bug 6151)";
5808
    print "Upgrade to $DBversion done: adding AllowReturnToBranch syspref (bug 6151)";
Lines 6771-6776 if ( CheckVersion($DBversion) ) { Link Here
6771
   SetVersion ($DBversion);
6771
   SetVersion ($DBversion);
6772
}
6772
}
6773
6773
6774
$DBversion = "3.11.00.XXX";
6775
if ( CheckVersion($DBversion) ) {
6776
   $dbh->do("UPDATE systempreferences SET variable = 'IndependentBranches' WHERE variable = 'IndependantBranches'");
6777
   print "Upgrade to $DBversion done (Bug 10080 - Change system pref IndependantBranches to IndependentBranches)\n";
6778
   SetVersion ($DBversion);
6779
}
6774
6780
6775
=head1 FUNCTIONS
6781
=head1 FUNCTIONS
6776
6782
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc (-1 / +1 lines)
Lines 61-67 Link Here
61
              <b class="caret"></b>
61
              <b class="caret"></b>
62
          </a>
62
          </a>
63
          <ul class="dropdown-menu" role="menu" aria-labelledby="drop3">
63
          <ul class="dropdown-menu" role="menu" aria-labelledby="drop3">
64
           [% IF ( IndependantBranches ) %]
64
           [% IF ( IndependentBranches ) %]
65
              [% IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) %]
65
              [% IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) %]
66
                  <li>
66
                  <li>
67
                     <a class="toplinks" href="/cgi-bin/koha/circ/selectbranchprinter.pl">Set library</a>
67
                     <a class="toplinks" href="/cgi-bin/koha/circ/selectbranchprinter.pl">Set library</a>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/admin.pref (-1 / +1 lines)
Lines 64-70 Administration: Link Here
64
                  tmp: as temporary files.
64
                  tmp: as temporary files.
65
                  memcached: in a memcached server.
65
                  memcached: in a memcached server.
66
        -
66
        -
67
            - pref: IndependantBranches
67
            - pref: IndependentBranches
68
              default: 0
68
              default: 0
69
              choices:
69
              choices:
70
                  yes: Prevent
70
                  yes: Prevent
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt (-1 / +1 lines)
Lines 49-55 Link Here
49
</p>
49
</p>
50
50
51
[% IF ( AutoLocation ) %][% ELSE %]
51
[% IF ( AutoLocation ) %][% ELSE %]
52
[% IF ( IndependantBranches ) %][% ELSE %]
52
[% IF ( IndependentBranches ) %][% ELSE %]
53
<p><label for="branch">Library:</label>
53
<p><label for="branch">Library:</label>
54
    <select name="branch" id="branch" class="input" tabindex="3">
54
    <select name="branch" id="branch" class="input" tabindex="3">
55
    <option value="">My library</option>
55
    <option value="">My library</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation-home.tt (-1 / +1 lines)
Lines 22-28 Link Here
22
    [% IF ( display_transfer ) %]
22
    [% IF ( display_transfer ) %]
23
		<li><a href="/cgi-bin/koha/circ/branchtransfers.pl">Transfer</a></li>
23
		<li><a href="/cgi-bin/koha/circ/branchtransfers.pl">Transfer</a></li>
24
    [% END %]
24
    [% END %]
25
	[% IF ( AutoLocation ) %][% ELSE %][% IF ( IndependantBranches ) %][% ELSE %]<li><a href="/cgi-bin/koha/circ/selectbranchprinter.pl">Set library</a></li>[% END %][% END %]
25
    [% IF ( AutoLocation ) %][% ELSE %][% IF ( IndependentBranches ) %][% ELSE %]<li><a href="/cgi-bin/koha/circ/selectbranchprinter.pl">Set library</a></li>[% END %][% END %]
26
	[% IF ( fast_cataloging ) %]
26
	[% IF ( fast_cataloging ) %]
27
	    [% IF ( CAN_user_editcatalogue_fast_cataloging ) %]
27
	    [% IF ( CAN_user_editcatalogue_fast_cataloging ) %]
28
		<li><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=FA">Fast cataloging</a></li>
28
		<li><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=FA">Fast cataloging</a></li>
(-)a/mainpage.pl (-1 / +1 lines)
Lines 51-57 $template->param( Link Here
51
);
51
);
52
52
53
my $branch =
53
my $branch =
54
  C4::Context->preference("IndependantBranches")
54
  C4::Context->preference("IndependentBranches")
55
  && !$flags->{'superlibrarian'}
55
  && !$flags->{'superlibrarian'}
56
  ? C4::Context->userenv()->{'branch'}
56
  ? C4::Context->userenv()->{'branch'}
57
  : undef;
57
  : undef;
(-)a/members/deletemem.pl (-1 / +1 lines)
Lines 66-72 if ($bor->{category_type} eq "S") { Link Here
66
    }
66
    }
67
}
67
}
68
68
69
if (C4::Context->preference("IndependantBranches")) {
69
if (C4::Context->preference("IndependentBranches")) {
70
    my $userenv = C4::Context->userenv;
70
    my $userenv = C4::Context->userenv;
71
    if (($userenv->{flags} % 2 != 1) && $bor->{'branchcode'}){
71
    if (($userenv->{flags} % 2 != 1) && $bor->{'branchcode'}){
72
        unless ($userenv->{branch} eq $bor->{'branchcode'}){
72
        unless ($userenv->{branch} eq $bor->{'branchcode'}){
(-)a/members/memberentry.pl (-2 / +2 lines)
Lines 292-298 if ($op eq 'save' || $op eq 'insert'){ Link Here
292
        $newdata{'surname'} = uc($newdata{'surname'});
292
        $newdata{'surname'} = uc($newdata{'surname'});
293
    }
293
    }
294
294
295
  if (C4::Context->preference("IndependantBranches")) {
295
  if (C4::Context->preference("IndependentBranches")) {
296
    if ($userenv && $userenv->{flags} % 2 != 1){
296
    if ($userenv && $userenv->{flags} % 2 != 1){
297
      $debug and print STDERR "  $newdata{'branchcode'} : ".$userenv->{flags}.":".$userenv->{branch};
297
      $debug and print STDERR "  $newdata{'branchcode'} : ".$userenv->{flags}.":".$userenv->{branch};
298
      unless (!$newdata{'branchcode'} || $userenv->{branch} eq $newdata{'branchcode'}){
298
      unless (!$newdata{'branchcode'} || $userenv->{branch} eq $newdata{'branchcode'}){
Lines 422-428 if ($nok or !$nodouble){ Link Here
422
        $template->param( step_1 => 1,step_2 => 1,step_3 => 1, step_4 => 1, step_5 => 1, step_6 => 1);
422
        $template->param( step_1 => 1,step_2 => 1,step_3 => 1, step_4 => 1, step_5 => 1, step_6 => 1);
423
    }  
423
    }  
424
} 
424
} 
425
if (C4::Context->preference("IndependantBranches")) {
425
if (C4::Context->preference("IndependentBranches")) {
426
    my $userenv = C4::Context->userenv;
426
    my $userenv = C4::Context->userenv;
427
    if ($userenv->{flags} % 2 != 1 && $data{'branchcode'}){
427
    if ($userenv->{flags} % 2 != 1 && $data{'branchcode'}){
428
        unless ($userenv->{branch} eq $data{'branchcode'}){
428
        unless ($userenv->{branch} eq $data{'branchcode'}){
(-)a/members/members-update.pl (-1 / +1 lines)
Lines 42-48 my ( $template, $loggedinuser, $cookie, $flags ) = get_template_and_user( Link Here
42
);
42
);
43
43
44
my $branch =
44
my $branch =
45
  C4::Context->preference("IndependantBranches")
45
  C4::Context->preference("IndependentBranches")
46
  && !$flags->{'superlibrarian'}
46
  && !$flags->{'superlibrarian'}
47
  ? C4::Context->userenv()->{'branch'}
47
  ? C4::Context->userenv()->{'branch'}
48
  : undef;
48
  : undef;
(-)a/members/moremember.pl (-2 / +2 lines)
Lines 212-218 $bor{'borrowernumber'} = $borrowernumber; Link Here
212
212
213
# Converts the branchcode to the branch name
213
# Converts the branchcode to the branch name
214
my $samebranch;
214
my $samebranch;
215
if ( C4::Context->preference("IndependantBranches") ) {
215
if ( C4::Context->preference("IndependentBranches") ) {
216
    my $userenv = C4::Context->userenv;
216
    my $userenv = C4::Context->userenv;
217
    unless ( $userenv->{flags} % 2 == 1 ) {
217
    unless ( $userenv->{flags} % 2 == 1 ) {
218
        $samebranch = ( $data->{'branchcode'} eq $userenv->{branch} );
218
        $samebranch = ( $data->{'branchcode'} eq $userenv->{branch} );
Lines 338-344 my $candeleteuser; Link Here
338
my $userenv = C4::Context->userenv;
338
my $userenv = C4::Context->userenv;
339
if($userenv->{flags} % 2 == 1){
339
if($userenv->{flags} % 2 == 1){
340
    $candeleteuser = 1;
340
    $candeleteuser = 1;
341
}elsif ( C4::Context->preference("IndependantBranches") ) {
341
}elsif ( C4::Context->preference("IndependentBranches") ) {
342
    $candeleteuser = ( $data->{'branchcode'} eq $userenv->{branch} );
342
    $candeleteuser = ( $data->{'branchcode'} eq $userenv->{branch} );
343
}else{
343
}else{
344
    if( C4::Auth::getuserflags( $userenv->{flags},$userenv->{number})->{borrowers} ) {
344
    if( C4::Auth::getuserflags( $userenv->{flags},$userenv->{number})->{borrowers} ) {
(-)a/misc/release_notes/release_notes_30004.txt (-1 / +1 lines)
Lines 407-413 Exhaustive list of bugs fixed follows : Link Here
407
3550 use GetRecordValue to retrieve subtitle
407
3550 use GetRecordValue to retrieve subtitle
408
3552 This mark mandatory fields with a red asterisk
408
3552 This mark mandatory fields with a red asterisk
409
3553 do not allow users to create code-less frameworks
409
3553 do not allow users to create code-less frameworks
410
3555 This sets the default branch to the logged user branch when IndependantBranches is active
410
3555 This sets the default branch to the logged user branch when IndependentBranches is active
411
3557 fix bor_issues_top
411
3557 fix bor_issues_top
412
3560 This add a filter to search by itemtype
412
3560 This add a filter to search by itemtype
413
3562 fix returning document in another branch
413
3562 fix returning document in another branch
(-)a/misc/release_notes/release_notes_3_10_0.txt (-1 / +1 lines)
Lines 1269-1275 Circulation Link Here
1269
	8253	critical	Fix fine doubling, when upgrading from 3.6 to 3.8 (or later)
1269
	8253	critical	Fix fine doubling, when upgrading from 3.6 to 3.8 (or later)
1270
	8418	critical	Koha::Calendar is_holiday ignores all user data
1270
	8418	critical	Koha::Calendar is_holiday ignores all user data
1271
	8966	critical	Koha::Calendar::is_holiday truncates the date
1271
	8966	critical	Koha::Calendar::is_holiday truncates the date
1272
	6151	major	IndependantBranches and HomeOrHoldingBranchReturn can prevent items from being checked in
1272
    6151	major	IndependentBranches and HomeOrHoldingBranchReturn can prevent items from being checked in
1273
	6976	major	User hold limit can be avoided by users in OPAC
1273
	6976	major	User hold limit can be avoided by users in OPAC
1274
	8082	major	The:  IssuingInProcess  configuration setting is working in reverse.
1274
	8082	major	The:  IssuingInProcess  configuration setting is working in reverse.
1275
	8213	major	"Cancel All" button on holds over tab cancels both holds over and holds waiting
1275
	8213	major	"Cancel All" button on holds over tab cancels both holds over and holds waiting
(-)a/misc/translator/po/am-Ethi-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17053-17059 msgid "" Link Here
17053
"%s&quot; is neither permitted nor prohibited. %s %s "
17053
"%s&quot; is neither permitted nor prohibited. %s %s "
17054
msgstr ""
17054
msgstr ""
17055
17055
17056
#. %1$s:  IF ( IndependantBranches ) 
17056
#. %1$s:  IF ( IndependentBranches )
17057
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17057
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17058
#: intranet-tmpl/prog/en/includes/header.inc:59
17058
#: intranet-tmpl/prog/en/includes/header.inc:59
17059
#, c-format
17059
#, c-format
Lines 20485-20491 msgstr "" Link Here
20485
20485
20486
#. %1$s:  IF ( AutoLocation ) 
20486
#. %1$s:  IF ( AutoLocation ) 
20487
#. %2$s:  ELSE 
20487
#. %2$s:  ELSE 
20488
#. %3$s:  IF ( IndependantBranches ) 
20488
#. %3$s:  IF ( IndependentBranches )
20489
#. %4$s:  ELSE 
20489
#. %4$s:  ELSE 
20490
#: intranet-tmpl/prog/en/modules/auth.tt:49
20490
#: intranet-tmpl/prog/en/modules/auth.tt:49
20491
#, c-format
20491
#, c-format
(-)a/misc/translator/po/am-Ethi-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/ar-Arab-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17068-17074 msgstr "" Link Here
17068
"%s %s &quot;%s&quot; إنه مسموح. %s &quot;%s&quot; إنه ممنوع. %s &quot;%"
17068
"%s %s &quot;%s&quot; إنه مسموح. %s &quot;%s&quot; إنه ممنوع. %s &quot;%"
17069
"s&quot; إنه لا مسموح ولا ممنوع. %s %s "
17069
"s&quot; إنه لا مسموح ولا ممنوع. %s %s "
17070
17070
17071
#. %1$s:  IF ( IndependantBranches ) 
17071
#. %1$s:  IF ( IndependentBranches )
17072
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17072
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17073
#: intranet-tmpl/prog/en/includes/header.inc:59
17073
#: intranet-tmpl/prog/en/includes/header.inc:59
17074
#, c-format
17074
#, c-format
Lines 20546-20552 msgstr "%s %s (%s)" Link Here
20546
20546
20547
#. %1$s:  IF ( AutoLocation ) 
20547
#. %1$s:  IF ( AutoLocation ) 
20548
#. %2$s:  ELSE 
20548
#. %2$s:  ELSE 
20549
#. %3$s:  IF ( IndependantBranches ) 
20549
#. %3$s:  IF ( IndependentBranches )
20550
#. %4$s:  ELSE 
20550
#. %4$s:  ELSE 
20551
#: intranet-tmpl/prog/en/modules/auth.tt:49
20551
#: intranet-tmpl/prog/en/modules/auth.tt:49
20552
#, fuzzy, c-format
20552
#, fuzzy, c-format
(-)a/misc/translator/po/ar-Arab-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr "بعض"
155
msgstr "بعض"
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/az-AZ-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17057-17063 msgid "" Link Here
17057
"%s&quot; is neither permitted nor prohibited. %s %s "
17057
"%s&quot; is neither permitted nor prohibited. %s %s "
17058
msgstr ""
17058
msgstr ""
17059
17059
17060
#. %1$s:  IF ( IndependantBranches ) 
17060
#. %1$s:  IF ( IndependentBranches )
17061
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17061
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17062
#: intranet-tmpl/prog/en/includes/header.inc:59
17062
#: intranet-tmpl/prog/en/includes/header.inc:59
17063
#, fuzzy, c-format
17063
#, fuzzy, c-format
Lines 20500-20506 msgstr "%s %s %s %s(%s)" Link Here
20500
20500
20501
#. %1$s:  IF ( AutoLocation ) 
20501
#. %1$s:  IF ( AutoLocation ) 
20502
#. %2$s:  ELSE 
20502
#. %2$s:  ELSE 
20503
#. %3$s:  IF ( IndependantBranches ) 
20503
#. %3$s:  IF ( IndependentBranches )
20504
#. %4$s:  ELSE 
20504
#. %4$s:  ELSE 
20505
#: intranet-tmpl/prog/en/modules/auth.tt:49
20505
#: intranet-tmpl/prog/en/modules/auth.tt:49
20506
#, fuzzy, c-format
20506
#, fuzzy, c-format
(-)a/misc/translator/po/az-AZ-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/ben-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17053-17059 msgid "" Link Here
17053
"%s&quot; is neither permitted nor prohibited. %s %s "
17053
"%s&quot; is neither permitted nor prohibited. %s %s "
17054
msgstr ""
17054
msgstr ""
17055
17055
17056
#. %1$s:  IF ( IndependantBranches ) 
17056
#. %1$s:  IF ( IndependentBranches )
17057
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17057
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17058
#: intranet-tmpl/prog/en/includes/header.inc:59
17058
#: intranet-tmpl/prog/en/includes/header.inc:59
17059
#, c-format
17059
#, c-format
Lines 20485-20491 msgstr "" Link Here
20485
20485
20486
#. %1$s:  IF ( AutoLocation ) 
20486
#. %1$s:  IF ( AutoLocation ) 
20487
#. %2$s:  ELSE 
20487
#. %2$s:  ELSE 
20488
#. %3$s:  IF ( IndependantBranches ) 
20488
#. %3$s:  IF ( IndependentBranches )
20489
#. %4$s:  ELSE 
20489
#. %4$s:  ELSE 
20490
#: intranet-tmpl/prog/en/modules/auth.tt:49
20490
#: intranet-tmpl/prog/en/modules/auth.tt:49
20491
#, c-format
20491
#, c-format
(-)a/misc/translator/po/ben-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/bg-Cyrl-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 15895-15901 msgid "" Link Here
15895
"%s&quot; is neither permitted nor prohibited. %s %s "
15895
"%s&quot; is neither permitted nor prohibited. %s %s "
15896
msgstr ""
15896
msgstr ""
15897
15897
15898
#. %1$s:  IF ( IndependantBranches ) 
15898
#. %1$s:  IF ( IndependentBranches )
15899
#. %2$s:  IF ( CAN_user_management ) 
15899
#. %2$s:  IF ( CAN_user_management ) 
15900
#: intranet-tmpl/prog/en/includes/header.inc:53
15900
#: intranet-tmpl/prog/en/includes/header.inc:53
15901
#, c-format
15901
#, c-format
Lines 19028-19034 msgstr "" Link Here
19028
19028
19029
#. %1$s:  IF ( AutoLocation ) 
19029
#. %1$s:  IF ( AutoLocation ) 
19030
#. %2$s:  ELSE 
19030
#. %2$s:  ELSE 
19031
#. %3$s:  IF ( IndependantBranches ) 
19031
#. %3$s:  IF ( IndependentBranches )
19032
#. %4$s:  ELSE 
19032
#. %4$s:  ELSE 
19033
#: intranet-tmpl/prog/en/modules/auth.tt:49
19033
#: intranet-tmpl/prog/en/modules/auth.tt:49
19034
#, c-format
19034
#, c-format
(-)a/misc/translator/po/bg-Cyrl-pref.po (-3 / +3 lines)
Lines 724-730 msgstr "" Link Here
724
# Administration > Login options
724
# Administration > Login options
725
# Administration > Login options
725
# Administration > Login options
726
# Administration > Login options
726
# Administration > Login options
727
msgid "admin.pref#IndependantBranches# Don't prevent"
727
msgid "admin.pref#IndependentBranches# Don't prevent"
728
msgstr ""
728
msgstr ""
729
729
730
# Administration > Login options
730
# Administration > Login options
Lines 751-757 msgstr "" Link Here
751
# Administration > Login options
751
# Administration > Login options
752
# Administration > Login options
752
# Administration > Login options
753
# Administration > Login options
753
# Administration > Login options
754
msgid "admin.pref#IndependantBranches# Prevent"
754
msgid "admin.pref#IndependentBranches# Prevent"
755
msgstr ""
755
msgstr ""
756
756
757
# Administration > Login options
757
# Administration > Login options
Lines 778-784 msgstr "" Link Here
778
# Administration > Login options
778
# Administration > Login options
779
# Administration > Login options
779
# Administration > Login options
780
# Administration > Login options
780
# Administration > Login options
781
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
781
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
782
msgstr ""
782
msgstr ""
783
783
784
# Administration > Interface options
784
# Administration > Interface options
(-)a/misc/translator/po/ca-VA-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17055-17061 msgid "" Link Here
17055
"%s&quot; is neither permitted nor prohibited. %s %s "
17055
"%s&quot; is neither permitted nor prohibited. %s %s "
17056
msgstr ""
17056
msgstr ""
17057
17057
17058
#. %1$s:  IF ( IndependantBranches ) 
17058
#. %1$s:  IF ( IndependentBranches )
17059
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17059
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17060
#: intranet-tmpl/prog/en/includes/header.inc:59
17060
#: intranet-tmpl/prog/en/includes/header.inc:59
17061
#, c-format
17061
#, c-format
Lines 20487-20493 msgstr "" Link Here
20487
20487
20488
#. %1$s:  IF ( AutoLocation ) 
20488
#. %1$s:  IF ( AutoLocation ) 
20489
#. %2$s:  ELSE 
20489
#. %2$s:  ELSE 
20490
#. %3$s:  IF ( IndependantBranches ) 
20490
#. %3$s:  IF ( IndependentBranches )
20491
#. %4$s:  ELSE 
20491
#. %4$s:  ELSE 
20492
#: intranet-tmpl/prog/en/modules/auth.tt:49
20492
#: intranet-tmpl/prog/en/modules/auth.tt:49
20493
#, c-format
20493
#, c-format
(-)a/misc/translator/po/ca-VA-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/cs-CZ-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 15897-15903 msgid "" Link Here
15897
"%s&quot; is neither permitted nor prohibited. %s %s "
15897
"%s&quot; is neither permitted nor prohibited. %s %s "
15898
msgstr ""
15898
msgstr ""
15899
15899
15900
#. %1$s:  IF ( IndependantBranches ) 
15900
#. %1$s:  IF ( IndependentBranches )
15901
#. %2$s:  IF ( CAN_user_management ) 
15901
#. %2$s:  IF ( CAN_user_management ) 
15902
#: intranet-tmpl/prog/en/includes/header.inc:53
15902
#: intranet-tmpl/prog/en/includes/header.inc:53
15903
#, fuzzy, c-format
15903
#, fuzzy, c-format
Lines 19044-19050 msgstr "%s %s %s %s(%s)" Link Here
19044
19044
19045
#. %1$s:  IF ( AutoLocation ) 
19045
#. %1$s:  IF ( AutoLocation ) 
19046
#. %2$s:  ELSE 
19046
#. %2$s:  ELSE 
19047
#. %3$s:  IF ( IndependantBranches ) 
19047
#. %3$s:  IF ( IndependentBranches )
19048
#. %4$s:  ELSE 
19048
#. %4$s:  ELSE 
19049
#: intranet-tmpl/prog/en/modules/auth.tt:49
19049
#: intranet-tmpl/prog/en/modules/auth.tt:49
19050
#, fuzzy, c-format
19050
#, fuzzy, c-format
(-)a/misc/translator/po/cs-CZ-pref.po (-3 / +3 lines)
Lines 670-676 msgstr "" Link Here
670
# Administration > Login options
670
# Administration > Login options
671
# Administration > Login options
671
# Administration > Login options
672
# Administration > Login options
672
# Administration > Login options
673
msgid "admin.pref#IndependantBranches# Don't prevent"
673
msgid "admin.pref#IndependentBranches# Don't prevent"
674
msgstr ""
674
msgstr ""
675
675
676
# Administration > Login options
676
# Administration > Login options
Lines 695-701 msgstr "" Link Here
695
# Administration > Login options
695
# Administration > Login options
696
# Administration > Login options
696
# Administration > Login options
697
# Administration > Login options
697
# Administration > Login options
698
msgid "admin.pref#IndependantBranches# Prevent"
698
msgid "admin.pref#IndependentBranches# Prevent"
699
msgstr ""
699
msgstr ""
700
700
701
# Administration > Login options
701
# Administration > Login options
Lines 720-726 msgstr "" Link Here
720
# Administration > Login options
720
# Administration > Login options
721
# Administration > Login options
721
# Administration > Login options
722
# Administration > Login options
722
# Administration > Login options
723
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
723
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
724
msgstr ""
724
msgstr ""
725
725
726
# Administration > Interface options
726
# Administration > Interface options
(-)a/misc/translator/po/da-DK-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17072-17078 msgstr "" Link Here
17072
"%s %s &quot;%s&quot; er tilladt. %s &quot;%s&quot; er forbudt. %s &quot;%"
17072
"%s %s &quot;%s&quot; er tilladt. %s &quot;%s&quot; er forbudt. %s &quot;%"
17073
"s&quot; er hverken tilladt eller forbudt. %s %s "
17073
"s&quot; er hverken tilladt eller forbudt. %s %s "
17074
17074
17075
#. %1$s:  IF ( IndependantBranches ) 
17075
#. %1$s:  IF ( IndependentBranches )
17076
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17076
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17077
#: intranet-tmpl/prog/en/includes/header.inc:59
17077
#: intranet-tmpl/prog/en/includes/header.inc:59
17078
#, c-format
17078
#, c-format
Lines 20589-20595 msgstr "%s%s %s%s" Link Here
20589
20589
20590
#. %1$s:  IF ( AutoLocation ) 
20590
#. %1$s:  IF ( AutoLocation ) 
20591
#. %2$s:  ELSE 
20591
#. %2$s:  ELSE 
20592
#. %3$s:  IF ( IndependantBranches ) 
20592
#. %3$s:  IF ( IndependentBranches )
20593
#. %4$s:  ELSE 
20593
#. %4$s:  ELSE 
20594
#: intranet-tmpl/prog/en/modules/auth.tt:49
20594
#: intranet-tmpl/prog/en/modules/auth.tt:49
20595
#, c-format
20595
#, c-format
(-)a/misc/translator/po/da-DK-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr "noget"
155
msgstr "noget"
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr "Udeluk ikke"
159
msgstr "Udeluk ikke"
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr "Udeluk"
163
msgstr "Udeluk"
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr "medarbejdere (men ikke superbibliotekarer) fra muligheden for at ændre objekter (reserveringer, eksemplarer, lånere, etc.) der tilhører andre biblioteker."
167
msgstr "medarbejdere (men ikke superbibliotekarer) fra muligheden for at ændre objekter (reserveringer, eksemplarer, lånere, etc.) der tilhører andre biblioteker."
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/de-DE-i-staff-t-prog-v-3006000.po (-3 / +3 lines)
Lines 17063-17069 msgstr "" Link Here
17063
"%s %s &quot;%s&quot; ist erlaubt. %s &quot;%s&quot; ist verboten. %s &quot;"
17063
"%s %s &quot;%s&quot; ist erlaubt. %s &quot;%s&quot; ist verboten. %s &quot;"
17064
"%s&quot; ist weder erlaubt noch verboten. %s %s "
17064
"%s&quot; ist weder erlaubt noch verboten. %s %s "
17065
17065
17066
#. %1$s:  IF ( IndependantBranches ) 
17066
#. %1$s:  IF ( IndependentBranches )
17067
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17067
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17068
#: intranet-tmpl/prog/en/includes/header.inc:59
17068
#: intranet-tmpl/prog/en/includes/header.inc:59
17069
#, c-format
17069
#, c-format
Lines 20608-20614 msgstr "%s%s %s%s" Link Here
20608
20608
20609
#. %1$s:  IF ( AutoLocation ) 
20609
#. %1$s:  IF ( AutoLocation ) 
20610
#. %2$s:  ELSE 
20610
#. %2$s:  ELSE 
20611
#. %3$s:  IF ( IndependantBranches ) 
20611
#. %3$s:  IF ( IndependentBranches )
20612
#. %4$s:  ELSE 
20612
#. %4$s:  ELSE 
20613
#: intranet-tmpl/prog/en/modules/auth.tt:49
20613
#: intranet-tmpl/prog/en/modules/auth.tt:49
20614
#, c-format
20614
#, c-format
Lines 20911-20917 msgstr "%s%s%s *" Link Here
20911
#. For the first occurrence,
20911
#. For the first occurrence,
20912
#. %1$s:  IF ( AutoLocation ) 
20912
#. %1$s:  IF ( AutoLocation ) 
20913
#. %2$s:  ELSE 
20913
#. %2$s:  ELSE 
20914
#. %3$s:  IF ( IndependantBranches ) 
20914
#. %3$s:  IF ( IndependentBranches )
20915
#. %4$s:  ELSE 
20915
#. %4$s:  ELSE 
20916
#: intranet-tmpl/prog/en/modules/circ/circulation-home.tt:22
20916
#: intranet-tmpl/prog/en/modules/circ/circulation-home.tt:22
20917
#: intranet-tmpl/prog/en/modules/circ/circulation.tt:735
20917
#: intranet-tmpl/prog/en/modules/circ/circulation.tt:735
(-)a/misc/translator/po/de-DE-pref.po (-3 / +3 lines)
Lines 170-184 msgid "admin.pref#DebugLevel# some" Link Here
170
msgstr "einige"
170
msgstr "einige"
171
171
172
# Administration > Login options
172
# Administration > Login options
173
msgid "admin.pref#IndependantBranches# Don't prevent"
173
msgid "admin.pref#IndependentBranches# Don't prevent"
174
msgstr "Erlaube"
174
msgstr "Erlaube"
175
175
176
# Administration > Login options
176
# Administration > Login options
177
msgid "admin.pref#IndependantBranches# Prevent"
177
msgid "admin.pref#IndependentBranches# Prevent"
178
msgstr "Erlaube nicht"
178
msgstr "Erlaube nicht"
179
179
180
# Administration > Login options
180
# Administration > Login options
181
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
181
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
182
msgstr "dass Mitarbeiter (wenn Sie keine Superlibrarians sind) Objekte (Vormerkungen, Exemplare, Benutzer, etc.) anderer Bibliotheken verändern."
182
msgstr "dass Mitarbeiter (wenn Sie keine Superlibrarians sind) Objekte (Vormerkungen, Exemplare, Benutzer, etc.) anderer Bibliotheken verändern."
183
183
184
# Administration > Interface options
184
# Administration > Interface options
(-)a/misc/translator/po/el-GR-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17076-17082 msgstr "" Link Here
17076
"%s %s &quot;%s&quot; επιτρέπεται. %s &quot;%s&quot; απαγορεύεται. %s &quot;%"
17076
"%s %s &quot;%s&quot; επιτρέπεται. %s &quot;%s&quot; απαγορεύεται. %s &quot;%"
17077
"s&quot; ούτε επιτρέπεται ούτε απαγορεύεται. %s %s "
17077
"s&quot; ούτε επιτρέπεται ούτε απαγορεύεται. %s %s "
17078
17078
17079
#. %1$s:  IF ( IndependantBranches ) 
17079
#. %1$s:  IF ( IndependentBranches )
17080
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17080
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17081
#: intranet-tmpl/prog/en/includes/header.inc:59
17081
#: intranet-tmpl/prog/en/includes/header.inc:59
17082
#, c-format
17082
#, c-format
Lines 20620-20626 msgstr "%s%s %s%s" Link Here
20620
20620
20621
#. %1$s:  IF ( AutoLocation ) 
20621
#. %1$s:  IF ( AutoLocation ) 
20622
#. %2$s:  ELSE 
20622
#. %2$s:  ELSE 
20623
#. %3$s:  IF ( IndependantBranches ) 
20623
#. %3$s:  IF ( IndependentBranches )
20624
#. %4$s:  ELSE 
20624
#. %4$s:  ELSE 
20625
#: intranet-tmpl/prog/en/modules/auth.tt:49
20625
#: intranet-tmpl/prog/en/modules/auth.tt:49
20626
#, c-format
20626
#, c-format
(-)a/misc/translator/po/el-GR-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr "μερικά"
155
msgstr "μερικά"
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr "Να μην εμποδίζεται "
159
msgstr "Να μην εμποδίζεται "
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr "Να εμποδίζεται "
163
msgstr "Να εμποδίζεται "
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr "το προσωπικό (αλλά όχι οι υπερβιβλιοθηκονόμοι) από το να τροποποιούν πράγματα (κρατήσεις, τεκμήρια, μέλη κτλ.)"
167
msgstr "το προσωπικό (αλλά όχι οι υπερβιβλιοθηκονόμοι) από το να τροποποιούν πράγματα (κρατήσεις, τεκμήρια, μέλη κτλ.)"
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/en-GB-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17061-17067 msgid "" Link Here
17061
"%s&quot; is neither permitted nor prohibited. %s %s "
17061
"%s&quot; is neither permitted nor prohibited. %s %s "
17062
msgstr ""
17062
msgstr ""
17063
17063
17064
#. %1$s:  IF ( IndependantBranches ) 
17064
#. %1$s:  IF ( IndependentBranches )
17065
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17065
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17066
#: intranet-tmpl/prog/en/includes/header.inc:59
17066
#: intranet-tmpl/prog/en/includes/header.inc:59
17067
#, fuzzy, c-format
17067
#, fuzzy, c-format
Lines 20508-20514 msgstr "%s %s %s %s(%s)" Link Here
20508
20508
20509
#. %1$s:  IF ( AutoLocation ) 
20509
#. %1$s:  IF ( AutoLocation ) 
20510
#. %2$s:  ELSE 
20510
#. %2$s:  ELSE 
20511
#. %3$s:  IF ( IndependantBranches ) 
20511
#. %3$s:  IF ( IndependentBranches )
20512
#. %4$s:  ELSE 
20512
#. %4$s:  ELSE 
20513
#: intranet-tmpl/prog/en/modules/auth.tt:49
20513
#: intranet-tmpl/prog/en/modules/auth.tt:49
20514
#, fuzzy, c-format
20514
#, fuzzy, c-format
(-)a/misc/translator/po/en-GB-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr "some"
155
msgstr "some"
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr "Don't prevent"
159
msgstr "Don't prevent"
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr "Prevent"
163
msgstr "Prevent"
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr "staff (but not superlibrarians) from modifying objects (holds, items, borrowers, etc.) belonging to other libraries."
167
msgstr "staff (but not superlibrarians) from modifying objects (holds, items, borrowers, etc.) belonging to other libraries."
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/en-NZ-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17076-17082 msgstr "" Link Here
17076
"%s %s &quot;%s&quot; is permitted. %s &quot;%s&quot; is prohibited. %s &quot;"
17076
"%s %s &quot;%s&quot; is permitted. %s &quot;%s&quot; is prohibited. %s &quot;"
17077
"%s&quot; is neither permitted nor prohibited. %s %s "
17077
"%s&quot; is neither permitted nor prohibited. %s %s "
17078
17078
17079
#. %1$s:  IF ( IndependantBranches ) 
17079
#. %1$s:  IF ( IndependentBranches )
17080
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17080
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17081
#: intranet-tmpl/prog/en/includes/header.inc:59
17081
#: intranet-tmpl/prog/en/includes/header.inc:59
17082
#, c-format
17082
#, c-format
Lines 20596-20602 msgstr "%s%s %s%s" Link Here
20596
20596
20597
#. %1$s:  IF ( AutoLocation ) 
20597
#. %1$s:  IF ( AutoLocation ) 
20598
#. %2$s:  ELSE 
20598
#. %2$s:  ELSE 
20599
#. %3$s:  IF ( IndependantBranches ) 
20599
#. %3$s:  IF ( IndependentBranches )
20600
#. %4$s:  ELSE 
20600
#. %4$s:  ELSE 
20601
#: intranet-tmpl/prog/en/modules/auth.tt:49
20601
#: intranet-tmpl/prog/en/modules/auth.tt:49
20602
#, c-format
20602
#, c-format
(-)a/misc/translator/po/en-NZ-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr "some"
155
msgstr "some"
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr "Don't prevent"
159
msgstr "Don't prevent"
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr "Prevent"
163
msgstr "Prevent"
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr "staff (but not superlibrarians) from modifying objects (holds, items, borrowers, etc.) belonging to other libraries."
167
msgstr "staff (but not superlibrarians) from modifying objects (holds, items, borrowers, etc.) belonging to other libraries."
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/es-ES-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17033-17039 msgstr "%s %s &nbsp; %s %s " Link Here
17033
msgid "%s %s &quot;%s&quot; is permitted. %s &quot;%s&quot; is prohibited. %s &quot;%s&quot; is neither permitted nor prohibited. %s %s "
17033
msgid "%s %s &quot;%s&quot; is permitted. %s &quot;%s&quot; is prohibited. %s &quot;%s&quot; is neither permitted nor prohibited. %s %s "
17034
msgstr "%s %s &quot;%s&quot; está permitido. %s &quot;%s&quot; está prohibido. %s &quot;%s&quot; no está ni permitido ni prohibido. %s %s "
17034
msgstr "%s %s &quot;%s&quot; está permitido. %s &quot;%s&quot; está prohibido. %s &quot;%s&quot; no está ni permitido ni prohibido. %s %s "
17035
17035
17036
#. %1$s:  IF ( IndependantBranches )
17036
#. %1$s:  IF ( IndependentBranches )
17037
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue )
17037
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue )
17038
#: intranet-tmpl/prog/en/includes/header.inc:59
17038
#: intranet-tmpl/prog/en/includes/header.inc:59
17039
#, c-format
17039
#, c-format
Lines 20381-20387 msgstr "%s%s %s%s" Link Here
20381
20381
20382
#. %1$s:  IF ( AutoLocation )
20382
#. %1$s:  IF ( AutoLocation )
20383
#. %2$s:  ELSE
20383
#. %2$s:  ELSE
20384
#. %3$s:  IF ( IndependantBranches )
20384
#. %3$s:  IF ( IndependentBranches )
20385
#. %4$s:  ELSE
20385
#. %4$s:  ELSE
20386
#: intranet-tmpl/prog/en/modules/auth.tt:49
20386
#: intranet-tmpl/prog/en/modules/auth.tt:49
20387
#, c-format
20387
#, c-format
(-)a/misc/translator/po/es-ES-pref.po (-3 / +3 lines)
Lines 179-193 msgid "admin.pref#DebugLevel# some" Link Here
179
msgstr "alguna"
179
msgstr "alguna"
180
180
181
# Administration > Login options
181
# Administration > Login options
182
msgid "admin.pref#IndependantBranches# Don't prevent"
182
msgid "admin.pref#IndependentBranches# Don't prevent"
183
msgstr "No prevenir"
183
msgstr "No prevenir"
184
184
185
# Administration > Login options
185
# Administration > Login options
186
msgid "admin.pref#IndependantBranches# Prevent"
186
msgid "admin.pref#IndependentBranches# Prevent"
187
msgstr "Prevenir"
187
msgstr "Prevenir"
188
188
189
# Administration > Login options
189
# Administration > Login options
190
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
190
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
191
msgstr "al personal (pero no superusuarios) de modificar objetos (reserva, ítems, socios, etc.) pertenecientes a otras bibliotecas."
191
msgstr "al personal (pero no superusuarios) de modificar objetos (reserva, ítems, socios, etc.) pertenecientes a otras bibliotecas."
192
192
193
# Administration > Interface options
193
# Administration > Interface options
(-)a/misc/translator/po/eu-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/fa-Arab-pref.po (-3 / +3 lines)
Lines 1723-1729 msgstr "" Link Here
1723
# Administration > Login options
1723
# Administration > Login options
1724
# Administration > Login options
1724
# Administration > Login options
1725
# Administration > Login options
1725
# Administration > Login options
1726
msgid "admin.pref#IndependantBranches# Don't prevent"
1726
msgid "admin.pref#IndependentBranches# Don't prevent"
1727
msgstr ""
1727
msgstr ""
1728
1728
1729
# Administration > Login options
1729
# Administration > Login options
Lines 1787-1793 msgstr "" Link Here
1787
# Administration > Login options
1787
# Administration > Login options
1788
# Administration > Login options
1788
# Administration > Login options
1789
# Administration > Login options
1789
# Administration > Login options
1790
msgid "admin.pref#IndependantBranches# Prevent"
1790
msgid "admin.pref#IndependentBranches# Prevent"
1791
msgstr ""
1791
msgstr ""
1792
1792
1793
# Administration > Login options
1793
# Administration > Login options
Lines 1851-1857 msgstr "" Link Here
1851
# Administration > Login options
1851
# Administration > Login options
1852
# Administration > Login options
1852
# Administration > Login options
1853
# Administration > Login options
1853
# Administration > Login options
1854
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
1854
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
1855
msgstr ""
1855
msgstr ""
1856
1856
1857
# Administration > Interface options
1857
# Administration > Interface options
(-)a/misc/translator/po/fi-FI-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17072-17078 msgstr "" Link Here
17072
"%s %s &quot;%s&quot; on sallittu %s &quot;%s&quot; on kielletty %s &quot;%"
17072
"%s %s &quot;%s&quot; on sallittu %s &quot;%s&quot; on kielletty %s &quot;%"
17073
"s&quot; ei ole sallittu eikä kielletty %s %s"
17073
"s&quot; ei ole sallittu eikä kielletty %s %s"
17074
17074
17075
#. %1$s:  IF ( IndependantBranches ) 
17075
#. %1$s:  IF ( IndependentBranches )
17076
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17076
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17077
#: intranet-tmpl/prog/en/includes/header.inc:59
17077
#: intranet-tmpl/prog/en/includes/header.inc:59
17078
#, c-format
17078
#, c-format
Lines 20612-20618 msgstr "%s%s %s%s" Link Here
20612
20612
20613
#. %1$s:  IF ( AutoLocation ) 
20613
#. %1$s:  IF ( AutoLocation ) 
20614
#. %2$s:  ELSE 
20614
#. %2$s:  ELSE 
20615
#. %3$s:  IF ( IndependantBranches ) 
20615
#. %3$s:  IF ( IndependentBranches )
20616
#. %4$s:  ELSE 
20616
#. %4$s:  ELSE 
20617
#: intranet-tmpl/prog/en/modules/auth.tt:49
20617
#: intranet-tmpl/prog/en/modules/auth.tt:49
20618
#, c-format
20618
#, c-format
(-)a/misc/translator/po/fi-FI-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/fr-CA-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17083-17089 msgstr "" Link Here
17083
"%s %s &quot;%s&quot; est autorisé. %s &quot;%s&quot; est interdit. %s &quot;%"
17083
"%s %s &quot;%s&quot; est autorisé. %s &quot;%s&quot; est interdit. %s &quot;%"
17084
"s&quot; n'est ni permis ni interdit. %s %s "
17084
"s&quot; n'est ni permis ni interdit. %s %s "
17085
17085
17086
#. %1$s:  IF ( IndependantBranches ) 
17086
#. %1$s:  IF ( IndependentBranches )
17087
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17087
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17088
#: intranet-tmpl/prog/en/includes/header.inc:59
17088
#: intranet-tmpl/prog/en/includes/header.inc:59
17089
#, c-format
17089
#, c-format
Lines 20632-20638 msgstr "%s%s %s%s" Link Here
20632
20632
20633
#. %1$s:  IF ( AutoLocation ) 
20633
#. %1$s:  IF ( AutoLocation ) 
20634
#. %2$s:  ELSE 
20634
#. %2$s:  ELSE 
20635
#. %3$s:  IF ( IndependantBranches ) 
20635
#. %3$s:  IF ( IndependentBranches )
20636
#. %4$s:  ELSE 
20636
#. %4$s:  ELSE 
20637
#: intranet-tmpl/prog/en/modules/auth.tt:49
20637
#: intranet-tmpl/prog/en/modules/auth.tt:49
20638
#, c-format
20638
#, c-format
(-)a/misc/translator/po/fr-CA-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr "quelque"
155
msgstr "quelque"
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr "Ne pas empêcher"
159
msgstr "Ne pas empêcher"
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr "Empêcher"
163
msgstr "Empêcher"
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr "le personnel (mais pas le super-bibliothécaire) de modifier les info appartenant aux autres bibliothèques (réservations, exemplaires, emprunteurs, etc.)"
167
msgstr "le personnel (mais pas le super-bibliothécaire) de modifier les info appartenant aux autres bibliothèques (réservations, exemplaires, emprunteurs, etc.)"
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/fr-FR-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 16769-16775 msgstr "%s %s &nbsp; %s %s " Link Here
16769
msgid "%s %s &quot;%s&quot; is permitted. %s &quot;%s&quot; is prohibited. %s &quot;%s&quot; is neither permitted nor prohibited. %s %s "
16769
msgid "%s %s &quot;%s&quot; is permitted. %s &quot;%s&quot; is prohibited. %s &quot;%s&quot; is neither permitted nor prohibited. %s %s "
16770
msgstr "%s %s &quot;%s&quot; est autorisé. %s &quot;%s&quot; est interdit. %s &quot;%s&quot; n'est ni permis ni interdit. %s %s "
16770
msgstr "%s %s &quot;%s&quot; est autorisé. %s &quot;%s&quot; est interdit. %s &quot;%s&quot; n'est ni permis ni interdit. %s %s "
16771
16771
16772
#. %1$s:  IF ( IndependantBranches )
16772
#. %1$s:  IF ( IndependentBranches )
16773
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue )
16773
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue )
16774
#: intranet-tmpl/prog/en/includes/header.inc:59
16774
#: intranet-tmpl/prog/en/includes/header.inc:59
16775
#, c-format
16775
#, c-format
Lines 20125-20131 msgstr "%s%s %s%s" Link Here
20125
20125
20126
#. %1$s:  IF ( AutoLocation )
20126
#. %1$s:  IF ( AutoLocation )
20127
#. %2$s:  ELSE
20127
#. %2$s:  ELSE
20128
#. %3$s:  IF ( IndependantBranches )
20128
#. %3$s:  IF ( IndependentBranches )
20129
#. %4$s:  ELSE
20129
#. %4$s:  ELSE
20130
#: intranet-tmpl/prog/en/modules/auth.tt:49
20130
#: intranet-tmpl/prog/en/modules/auth.tt:49
20131
#, c-format
20131
#, c-format
(-)a/misc/translator/po/fr-FR-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr "quelque"
155
msgstr "quelque"
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr "Ne pas empêcher"
159
msgstr "Ne pas empêcher"
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr "Empêcher"
163
msgstr "Empêcher"
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr "le personnel (mais pas le super-bibliothécaire) de modifier les info appartenant aux autres bibliothèques (réservations, exemplaires, emprunteurs, etc.)"
167
msgstr "le personnel (mais pas le super-bibliothécaire) de modifier les info appartenant aux autres bibliothèques (réservations, exemplaires, emprunteurs, etc.)"
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/gl-pref.po (-3 / +3 lines)
Lines 319-325 msgstr "" Link Here
319
# Administration > Login options
319
# Administration > Login options
320
# Administration > Login options
320
# Administration > Login options
321
# Administration > Login options
321
# Administration > Login options
322
msgid "admin.pref#IndependantBranches# Don't prevent"
322
msgid "admin.pref#IndependentBranches# Don't prevent"
323
msgstr ""
323
msgstr ""
324
324
325
# Administration > Login options
325
# Administration > Login options
Lines 331-337 msgstr "" Link Here
331
# Administration > Login options
331
# Administration > Login options
332
# Administration > Login options
332
# Administration > Login options
333
# Administration > Login options
333
# Administration > Login options
334
msgid "admin.pref#IndependantBranches# Prevent"
334
msgid "admin.pref#IndependentBranches# Prevent"
335
msgstr ""
335
msgstr ""
336
336
337
# Administration > Login options
337
# Administration > Login options
Lines 343-349 msgstr "" Link Here
343
# Administration > Login options
343
# Administration > Login options
344
# Administration > Login options
344
# Administration > Login options
345
# Administration > Login options
345
# Administration > Login options
346
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
346
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
347
msgstr ""
347
msgstr ""
348
348
349
# Administration > Interface options
349
# Administration > Interface options
(-)a/misc/translator/po/he-Hebr-pref.po (-3 / +3 lines)
Lines 1669-1675 msgstr "" Link Here
1669
# Administration > Login options
1669
# Administration > Login options
1670
# Administration > Login options
1670
# Administration > Login options
1671
# Administration > Login options
1671
# Administration > Login options
1672
msgid "admin.pref#IndependantBranches# Don't prevent"
1672
msgid "admin.pref#IndependentBranches# Don't prevent"
1673
msgstr ""
1673
msgstr ""
1674
1674
1675
# Administration > Login options
1675
# Administration > Login options
Lines 1731-1737 msgstr "" Link Here
1731
# Administration > Login options
1731
# Administration > Login options
1732
# Administration > Login options
1732
# Administration > Login options
1733
# Administration > Login options
1733
# Administration > Login options
1734
msgid "admin.pref#IndependantBranches# Prevent"
1734
msgid "admin.pref#IndependentBranches# Prevent"
1735
msgstr ""
1735
msgstr ""
1736
1736
1737
# Administration > Login options
1737
# Administration > Login options
Lines 1793-1799 msgstr "" Link Here
1793
# Administration > Login options
1793
# Administration > Login options
1794
# Administration > Login options
1794
# Administration > Login options
1795
# Administration > Login options
1795
# Administration > Login options
1796
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
1796
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
1797
msgstr ""
1797
msgstr ""
1798
1798
1799
# Administration > Interface options
1799
# Administration > Interface options
(-)a/misc/translator/po/hi-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17060-17066 msgid "" Link Here
17060
"%s&quot; is neither permitted nor prohibited. %s %s "
17060
"%s&quot; is neither permitted nor prohibited. %s %s "
17061
msgstr ""
17061
msgstr ""
17062
17062
17063
#. %1$s:  IF ( IndependantBranches ) 
17063
#. %1$s:  IF ( IndependentBranches )
17064
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17064
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17065
#: intranet-tmpl/prog/en/includes/header.inc:59
17065
#: intranet-tmpl/prog/en/includes/header.inc:59
17066
#, fuzzy, c-format
17066
#, fuzzy, c-format
Lines 20498-20504 msgstr "%s %s %s %s (%s) " Link Here
20498
20498
20499
#. %1$s:  IF ( AutoLocation ) 
20499
#. %1$s:  IF ( AutoLocation ) 
20500
#. %2$s:  ELSE 
20500
#. %2$s:  ELSE 
20501
#. %3$s:  IF ( IndependantBranches ) 
20501
#. %3$s:  IF ( IndependentBranches )
20502
#. %4$s:  ELSE 
20502
#. %4$s:  ELSE 
20503
#: intranet-tmpl/prog/en/modules/auth.tt:49
20503
#: intranet-tmpl/prog/en/modules/auth.tt:49
20504
#, fuzzy, c-format
20504
#, fuzzy, c-format
(-)a/misc/translator/po/hi-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/hr-HR-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17059-17065 msgid "" Link Here
17059
"%s&quot; is neither permitted nor prohibited. %s %s "
17059
"%s&quot; is neither permitted nor prohibited. %s %s "
17060
msgstr ""
17060
msgstr ""
17061
17061
17062
#. %1$s:  IF ( IndependantBranches ) 
17062
#. %1$s:  IF ( IndependentBranches )
17063
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17063
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17064
#: intranet-tmpl/prog/en/includes/header.inc:59
17064
#: intranet-tmpl/prog/en/includes/header.inc:59
17065
#, c-format
17065
#, c-format
Lines 20500-20506 msgstr "" Link Here
20500
20500
20501
#. %1$s:  IF ( AutoLocation ) 
20501
#. %1$s:  IF ( AutoLocation ) 
20502
#. %2$s:  ELSE 
20502
#. %2$s:  ELSE 
20503
#. %3$s:  IF ( IndependantBranches ) 
20503
#. %3$s:  IF ( IndependentBranches )
20504
#. %4$s:  ELSE 
20504
#. %4$s:  ELSE 
20505
#: intranet-tmpl/prog/en/modules/auth.tt:49
20505
#: intranet-tmpl/prog/en/modules/auth.tt:49
20506
#, c-format
20506
#, c-format
(-)a/misc/translator/po/hr-HR-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/hu-HU-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17057-17063 msgid "" Link Here
17057
"%s&quot; is neither permitted nor prohibited. %s %s "
17057
"%s&quot; is neither permitted nor prohibited. %s %s "
17058
msgstr ""
17058
msgstr ""
17059
17059
17060
#. %1$s:  IF ( IndependantBranches ) 
17060
#. %1$s:  IF ( IndependentBranches )
17061
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17061
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17062
#: intranet-tmpl/prog/en/includes/header.inc:59
17062
#: intranet-tmpl/prog/en/includes/header.inc:59
17063
#, fuzzy, c-format
17063
#, fuzzy, c-format
Lines 20506-20512 msgstr "%s %s (%s)" Link Here
20506
20506
20507
#. %1$s:  IF ( AutoLocation ) 
20507
#. %1$s:  IF ( AutoLocation ) 
20508
#. %2$s:  ELSE 
20508
#. %2$s:  ELSE 
20509
#. %3$s:  IF ( IndependantBranches ) 
20509
#. %3$s:  IF ( IndependentBranches )
20510
#. %4$s:  ELSE 
20510
#. %4$s:  ELSE 
20511
#: intranet-tmpl/prog/en/modules/auth.tt:49
20511
#: intranet-tmpl/prog/en/modules/auth.tt:49
20512
#, fuzzy, c-format
20512
#, fuzzy, c-format
(-)a/misc/translator/po/hu-HU-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/hy-Armn-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17078-17084 msgstr "" Link Here
17078
"%s %s &quot;%s&quot; թույլատրված է։ %s &quot;%s&quot; արգելված է։ %s &quot;%"
17078
"%s %s &quot;%s&quot; թույլատրված է։ %s &quot;%s&quot; արգելված է։ %s &quot;%"
17079
"s&quot; ոչ արգելված է ոչ էլ թույլատրված։ %s %s "
17079
"s&quot; ոչ արգելված է ոչ էլ թույլատրված։ %s %s "
17080
17080
17081
#. %1$s:  IF ( IndependantBranches ) 
17081
#. %1$s:  IF ( IndependentBranches )
17082
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17082
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17083
#: intranet-tmpl/prog/en/includes/header.inc:59
17083
#: intranet-tmpl/prog/en/includes/header.inc:59
17084
#, c-format
17084
#, c-format
Lines 20589-20595 msgstr "%s%s %s%s" Link Here
20589
20589
20590
#. %1$s:  IF ( AutoLocation ) 
20590
#. %1$s:  IF ( AutoLocation ) 
20591
#. %2$s:  ELSE 
20591
#. %2$s:  ELSE 
20592
#. %3$s:  IF ( IndependantBranches ) 
20592
#. %3$s:  IF ( IndependentBranches )
20593
#. %4$s:  ELSE 
20593
#. %4$s:  ELSE 
20594
#: intranet-tmpl/prog/en/modules/auth.tt:49
20594
#: intranet-tmpl/prog/en/modules/auth.tt:49
20595
#, c-format
20595
#, c-format
(-)a/misc/translator/po/hy-Armn-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/id-ID-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17053-17059 msgid "" Link Here
17053
"%s&quot; is neither permitted nor prohibited. %s %s "
17053
"%s&quot; is neither permitted nor prohibited. %s %s "
17054
msgstr ""
17054
msgstr ""
17055
17055
17056
#. %1$s:  IF ( IndependantBranches ) 
17056
#. %1$s:  IF ( IndependentBranches )
17057
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17057
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17058
#: intranet-tmpl/prog/en/includes/header.inc:59
17058
#: intranet-tmpl/prog/en/includes/header.inc:59
17059
#, c-format
17059
#, c-format
Lines 20485-20491 msgstr "" Link Here
20485
20485
20486
#. %1$s:  IF ( AutoLocation ) 
20486
#. %1$s:  IF ( AutoLocation ) 
20487
#. %2$s:  ELSE 
20487
#. %2$s:  ELSE 
20488
#. %3$s:  IF ( IndependantBranches ) 
20488
#. %3$s:  IF ( IndependentBranches )
20489
#. %4$s:  ELSE 
20489
#. %4$s:  ELSE 
20490
#: intranet-tmpl/prog/en/modules/auth.tt:49
20490
#: intranet-tmpl/prog/en/modules/auth.tt:49
20491
#, c-format
20491
#, c-format
(-)a/misc/translator/po/id-ID-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/is-IS-pref.po (-6 / +6 lines)
Lines 155-170 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr "admin.pref#DebugLevel# some"
155
msgstr "admin.pref#DebugLevel# some"
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr "admin.pref#IndependantBranches# Don't prevent"
159
msgstr "admin.pref#IndependentBranches# Don't prevent"
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr "admin.pref#IndependantBranches# Prevent"
163
msgstr "admin.pref#IndependentBranches# Prevent"
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
168
168
169
# Administration > Interface options
169
# Administration > Interface options
170
msgid "admin.pref#KohaAdminEmailAddress# Use"
170
msgid "admin.pref#KohaAdminEmailAddress# Use"
(-)a/misc/translator/po/it-IT-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17069-17075 msgstr "" Link Here
17069
"%s %s &quot;%s&quot; è permesso. %s &quot;%s&quot; è proibito. %s &quot;%"
17069
"%s %s &quot;%s&quot; è permesso. %s &quot;%s&quot; è proibito. %s &quot;%"
17070
"s&quot; non è né permesso né proibito. %s %s "
17070
"s&quot; non è né permesso né proibito. %s %s "
17071
17071
17072
#. %1$s:  IF ( IndependantBranches ) 
17072
#. %1$s:  IF ( IndependentBranches )
17073
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17073
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17074
#: intranet-tmpl/prog/en/includes/header.inc:59
17074
#: intranet-tmpl/prog/en/includes/header.inc:59
17075
#, c-format
17075
#, c-format
Lines 20615-20621 msgstr "%s%s %s%s" Link Here
20615
20615
20616
#. %1$s:  IF ( AutoLocation ) 
20616
#. %1$s:  IF ( AutoLocation ) 
20617
#. %2$s:  ELSE 
20617
#. %2$s:  ELSE 
20618
#. %3$s:  IF ( IndependantBranches ) 
20618
#. %3$s:  IF ( IndependentBranches )
20619
#. %4$s:  ELSE 
20619
#. %4$s:  ELSE 
20620
#: intranet-tmpl/prog/en/modules/auth.tt:49
20620
#: intranet-tmpl/prog/en/modules/auth.tt:49
20621
#, c-format
20621
#, c-format
(-)a/misc/translator/po/it-IT-pref.po (-3 / +3 lines)
Lines 173-187 msgid "admin.pref#DebugLevel# some" Link Here
173
msgstr "medio"
173
msgstr "medio"
174
174
175
# Administration > Login options
175
# Administration > Login options
176
msgid "admin.pref#IndependantBranches# Don't prevent"
176
msgid "admin.pref#IndependentBranches# Don't prevent"
177
msgstr "Non bloccare"
177
msgstr "Non bloccare"
178
178
179
# Administration > Login options
179
# Administration > Login options
180
msgid "admin.pref#IndependantBranches# Prevent"
180
msgid "admin.pref#IndependentBranches# Prevent"
181
msgstr "Blocca"
181
msgstr "Blocca"
182
182
183
# Administration > Login options
183
# Administration > Login options
184
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
184
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
185
msgstr "lo staff (ma non chi e' un superlibrarian) dal modificare oggetti e operazioni (holds, items, patrons, etc.) collegate ad altre biblioteche."
185
msgstr "lo staff (ma non chi e' un superlibrarian) dal modificare oggetti e operazioni (holds, items, patrons, etc.) collegate ad altre biblioteche."
186
186
187
# Administration > Interface options
187
# Administration > Interface options
(-)a/misc/translator/po/ja-Jpan-JP-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/ko-Kore-KP-pref.po (-3 / +3 lines)
Lines 1210-1216 msgstr "" Link Here
1210
# Administration > Login options
1210
# Administration > Login options
1211
# Administration > Login options
1211
# Administration > Login options
1212
# Administration > Login options
1212
# Administration > Login options
1213
msgid "admin.pref#IndependantBranches# Don't prevent"
1213
msgid "admin.pref#IndependentBranches# Don't prevent"
1214
msgstr ""
1214
msgstr ""
1215
1215
1216
# Administration > Login options
1216
# Administration > Login options
Lines 1255-1261 msgstr "" Link Here
1255
# Administration > Login options
1255
# Administration > Login options
1256
# Administration > Login options
1256
# Administration > Login options
1257
# Administration > Login options
1257
# Administration > Login options
1258
msgid "admin.pref#IndependantBranches# Prevent"
1258
msgid "admin.pref#IndependentBranches# Prevent"
1259
msgstr ""
1259
msgstr ""
1260
1260
1261
# Administration > Login options
1261
# Administration > Login options
Lines 1300-1306 msgstr "" Link Here
1300
# Administration > Login options
1300
# Administration > Login options
1301
# Administration > Login options
1301
# Administration > Login options
1302
# Administration > Login options
1302
# Administration > Login options
1303
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
1303
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
1304
msgstr ""
1304
msgstr ""
1305
1305
1306
# Administration > Interface options
1306
# Administration > Interface options
(-)a/misc/translator/po/lo-Laoo-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17074-17080 msgstr "" Link Here
17074
"%s %s &quot;%s&quot; ມີພາສາລາວ. %s &quot;%s&quot; ບໍ່ມີພາສາລາວ. %s &quot;%"
17074
"%s %s &quot;%s&quot; ມີພາສາລາວ. %s &quot;%s&quot; ບໍ່ມີພາສາລາວ. %s &quot;%"
17075
"s&quot; ມີທັງພາສາລາວ ແລະ ບໍ່ມີທັງພາສາລາວ. %s %s "
17075
"s&quot; ມີທັງພາສາລາວ ແລະ ບໍ່ມີທັງພາສາລາວ. %s %s "
17076
17076
17077
#. %1$s:  IF ( IndependantBranches ) 
17077
#. %1$s:  IF ( IndependentBranches )
17078
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17078
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17079
#: intranet-tmpl/prog/en/includes/header.inc:59
17079
#: intranet-tmpl/prog/en/includes/header.inc:59
17080
#, c-format
17080
#, c-format
Lines 20577-20583 msgstr "%s%s %s%s" Link Here
20577
20577
20578
#. %1$s:  IF ( AutoLocation ) 
20578
#. %1$s:  IF ( AutoLocation ) 
20579
#. %2$s:  ELSE 
20579
#. %2$s:  ELSE 
20580
#. %3$s:  IF ( IndependantBranches ) 
20580
#. %3$s:  IF ( IndependentBranches )
20581
#. %4$s:  ELSE 
20581
#. %4$s:  ELSE 
20582
#: intranet-tmpl/prog/en/modules/auth.tt:49
20582
#: intranet-tmpl/prog/en/modules/auth.tt:49
20583
#, c-format
20583
#, c-format
(-)a/misc/translator/po/lo-Laoo-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/mi-NZ-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/mon-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17055-17061 msgid "" Link Here
17055
"%s&quot; is neither permitted nor prohibited. %s %s "
17055
"%s&quot; is neither permitted nor prohibited. %s %s "
17056
msgstr ""
17056
msgstr ""
17057
17057
17058
#. %1$s:  IF ( IndependantBranches ) 
17058
#. %1$s:  IF ( IndependentBranches )
17059
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17059
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17060
#: intranet-tmpl/prog/en/includes/header.inc:59
17060
#: intranet-tmpl/prog/en/includes/header.inc:59
17061
#, fuzzy, c-format
17061
#, fuzzy, c-format
Lines 20510-20516 msgstr "%s %s %s %s(%s)" Link Here
20510
20510
20511
#. %1$s:  IF ( AutoLocation ) 
20511
#. %1$s:  IF ( AutoLocation ) 
20512
#. %2$s:  ELSE 
20512
#. %2$s:  ELSE 
20513
#. %3$s:  IF ( IndependantBranches ) 
20513
#. %3$s:  IF ( IndependentBranches )
20514
#. %4$s:  ELSE 
20514
#. %4$s:  ELSE 
20515
#: intranet-tmpl/prog/en/modules/auth.tt:49
20515
#: intranet-tmpl/prog/en/modules/auth.tt:49
20516
#, fuzzy, c-format
20516
#, fuzzy, c-format
(-)a/misc/translator/po/mon-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/mr-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17072-17078 msgstr "" Link Here
17072
"%s %s &quot;%s&quot; परवानगी आहे. %s &quot;%s&quot; सक्त मनाई आहे. %s &quot;%"
17072
"%s %s &quot;%s&quot; परवानगी आहे. %s &quot;%s&quot; सक्त मनाई आहे. %s &quot;%"
17073
"s&quot; याला परवानगी नाही आणि मनाईही नाही. %s %s "
17073
"s&quot; याला परवानगी नाही आणि मनाईही नाही. %s %s "
17074
17074
17075
#. %1$s:  IF ( IndependantBranches ) 
17075
#. %1$s:  IF ( IndependentBranches )
17076
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17076
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17077
#: intranet-tmpl/prog/en/includes/header.inc:59
17077
#: intranet-tmpl/prog/en/includes/header.inc:59
17078
#, c-format
17078
#, c-format
Lines 20546-20552 msgstr "%s%s %s%s" Link Here
20546
20546
20547
#. %1$s:  IF ( AutoLocation ) 
20547
#. %1$s:  IF ( AutoLocation ) 
20548
#. %2$s:  ELSE 
20548
#. %2$s:  ELSE 
20549
#. %3$s:  IF ( IndependantBranches ) 
20549
#. %3$s:  IF ( IndependentBranches )
20550
#. %4$s:  ELSE 
20550
#. %4$s:  ELSE 
20551
#: intranet-tmpl/prog/en/modules/auth.tt:49
20551
#: intranet-tmpl/prog/en/modules/auth.tt:49
20552
#, c-format
20552
#, c-format
(-)a/misc/translator/po/mr-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/ms-MY-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17110-17116 msgid "" Link Here
17110
"%s&quot; is neither permitted nor prohibited. %s %s "
17110
"%s&quot; is neither permitted nor prohibited. %s %s "
17111
msgstr ""
17111
msgstr ""
17112
17112
17113
#. %1$s:  IF ( IndependantBranches ) 
17113
#. %1$s:  IF ( IndependentBranches )
17114
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17114
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17115
#: intranet-tmpl/prog/en/includes/header.inc:59
17115
#: intranet-tmpl/prog/en/includes/header.inc:59
17116
#, c-format
17116
#, c-format
Lines 20622-20628 msgstr "" Link Here
20622
20622
20623
#. %1$s:  IF ( AutoLocation ) 
20623
#. %1$s:  IF ( AutoLocation ) 
20624
#. %2$s:  ELSE 
20624
#. %2$s:  ELSE 
20625
#. %3$s:  IF ( IndependantBranches ) 
20625
#. %3$s:  IF ( IndependentBranches )
20626
#. %4$s:  ELSE 
20626
#. %4$s:  ELSE 
20627
#: intranet-tmpl/prog/en/modules/auth.tt:49
20627
#: intranet-tmpl/prog/en/modules/auth.tt:49
20628
#, c-format
20628
#, c-format
(-)a/misc/translator/po/ms-MY-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/nb-NO-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17038-17044 msgstr "%s %s &nbsp; %s %s " Link Here
17038
msgid "%s %s &quot;%s&quot; is permitted. %s &quot;%s&quot; is prohibited. %s &quot;%s&quot; is neither permitted nor prohibited. %s %s "
17038
msgid "%s %s &quot;%s&quot; is permitted. %s &quot;%s&quot; is prohibited. %s &quot;%s&quot; is neither permitted nor prohibited. %s %s "
17039
msgstr "%s %s &quot;%s&quot; is tillatt. %s &quot;%s&quot; is ikke tillatt. %s &quot;%s&quot; er hverken tillatt eller forbudt. %s %s "
17039
msgstr "%s %s &quot;%s&quot; is tillatt. %s &quot;%s&quot; is ikke tillatt. %s &quot;%s&quot; er hverken tillatt eller forbudt. %s %s "
17040
17040
17041
#. %1$s:  IF ( IndependantBranches )
17041
#. %1$s:  IF ( IndependentBranches )
17042
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue )
17042
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue )
17043
#: intranet-tmpl/prog/en/includes/header.inc:59
17043
#: intranet-tmpl/prog/en/includes/header.inc:59
17044
#, c-format
17044
#, c-format
Lines 20382-20388 msgstr "%s%s %s%s" Link Here
20382
20382
20383
#. %1$s:  IF ( AutoLocation )
20383
#. %1$s:  IF ( AutoLocation )
20384
#. %2$s:  ELSE
20384
#. %2$s:  ELSE
20385
#. %3$s:  IF ( IndependantBranches )
20385
#. %3$s:  IF ( IndependentBranches )
20386
#. %4$s:  ELSE
20386
#. %4$s:  ELSE
20387
#: intranet-tmpl/prog/en/modules/auth.tt:49
20387
#: intranet-tmpl/prog/en/modules/auth.tt:49
20388
#, c-format
20388
#, c-format
(-)a/misc/translator/po/nb-NO-pref.po (-4 / +4 lines)
Lines 170-184 msgid "admin.pref#DebugLevel# some" Link Here
170
msgstr "noe"
170
msgstr "noe"
171
171
172
# Administration > Login options
172
# Administration > Login options
173
msgid "admin.pref#IndependantBranches# Don't prevent"
173
msgid "admin.pref#IndependentBranches# Don't prevent"
174
msgstr "Ikke hindre"
174
msgstr "Ikke hindre"
175
175
176
# Administration > Login options
176
# Administration > Login options
177
msgid "admin.pref#IndependantBranches# Prevent"
177
msgid "admin.pref#IndependentBranches# Prevent"
178
msgstr "Hindre"
178
msgstr "Hindre"
179
179
180
# Administration > Login options
180
# Administration > Login options
181
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
181
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
182
msgstr "ansatte (men ikke superlibrarian) fra å endre elementer (reservasjoner, eksemplarer, lånere og så videre) som tilhører andre bibliotek."
182
msgstr "ansatte (men ikke superlibrarian) fra å endre elementer (reservasjoner, eksemplarer, lånere og så videre) som tilhører andre bibliotek."
183
183
184
# Administration > Interface options
184
# Administration > Interface options
Lines 1387-1393 msgstr "Tillat" Link Here
1387
1387
1388
# Circulation > Holds Policy
1388
# Circulation > Holds Policy
1389
msgid "circulation.pref#canreservefromotherbranches# Don't allow (with independent branches)"
1389
msgid "circulation.pref#canreservefromotherbranches# Don't allow (with independent branches)"
1390
msgstr "Ikke tillat (med IndependantBranches)"
1390
msgstr "Ikke tillat (med IndependentBranches)"
1391
1391
1392
# Circulation > Holds Policy
1392
# Circulation > Holds Policy
1393
msgid "circulation.pref#canreservefromotherbranches# a user from one library to place a hold on an item from another library"
1393
msgid "circulation.pref#canreservefromotherbranches# a user from one library to place a hold on an item from another library"
(-)a/misc/translator/po/ne-NE-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 15896-15902 msgid "" Link Here
15896
"%s&quot; is neither permitted nor prohibited. %s %s "
15896
"%s&quot; is neither permitted nor prohibited. %s %s "
15897
msgstr ""
15897
msgstr ""
15898
15898
15899
#. %1$s:  IF ( IndependantBranches ) 
15899
#. %1$s:  IF ( IndependentBranches )
15900
#. %2$s:  IF ( CAN_user_management ) 
15900
#. %2$s:  IF ( CAN_user_management ) 
15901
#: intranet-tmpl/prog/en/includes/header.inc:53
15901
#: intranet-tmpl/prog/en/includes/header.inc:53
15902
#, c-format
15902
#, c-format
Lines 19029-19035 msgstr "" Link Here
19029
19029
19030
#. %1$s:  IF ( AutoLocation ) 
19030
#. %1$s:  IF ( AutoLocation ) 
19031
#. %2$s:  ELSE 
19031
#. %2$s:  ELSE 
19032
#. %3$s:  IF ( IndependantBranches ) 
19032
#. %3$s:  IF ( IndependentBranches )
19033
#. %4$s:  ELSE 
19033
#. %4$s:  ELSE 
19034
#: intranet-tmpl/prog/en/modules/auth.tt:49
19034
#: intranet-tmpl/prog/en/modules/auth.tt:49
19035
#, c-format
19035
#, c-format
(-)a/misc/translator/po/ne-NE-pref.po (-3 / +3 lines)
Lines 454-460 msgstr "" Link Here
454
# Administration > Login options
454
# Administration > Login options
455
# Administration > Login options
455
# Administration > Login options
456
# Administration > Login options
456
# Administration > Login options
457
msgid "admin.pref#IndependantBranches# Don't prevent"
457
msgid "admin.pref#IndependentBranches# Don't prevent"
458
msgstr ""
458
msgstr ""
459
459
460
# Administration > Login options
460
# Administration > Login options
Lines 471-477 msgstr "" Link Here
471
# Administration > Login options
471
# Administration > Login options
472
# Administration > Login options
472
# Administration > Login options
473
# Administration > Login options
473
# Administration > Login options
474
msgid "admin.pref#IndependantBranches# Prevent"
474
msgid "admin.pref#IndependentBranches# Prevent"
475
msgstr ""
475
msgstr ""
476
476
477
# Administration > Login options
477
# Administration > Login options
Lines 488-494 msgstr "" Link Here
488
# Administration > Login options
488
# Administration > Login options
489
# Administration > Login options
489
# Administration > Login options
490
# Administration > Login options
490
# Administration > Login options
491
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
491
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
492
msgstr ""
492
msgstr ""
493
493
494
# Administration > Interface options
494
# Administration > Interface options
(-)a/misc/translator/po/nl-BE-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17073-17079 msgstr "" Link Here
17073
"%s %s &quot;%s&quot; is toegestaan. %s &quot;%s&quot; is verboden. %s &quot;%"
17073
"%s %s &quot;%s&quot; is toegestaan. %s &quot;%s&quot; is verboden. %s &quot;%"
17074
"s&quot; noch toegestaan en noch verboden. %s %s "
17074
"s&quot; noch toegestaan en noch verboden. %s %s "
17075
17075
17076
#. %1$s:  IF ( IndependantBranches ) 
17076
#. %1$s:  IF ( IndependentBranches )
17077
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17077
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17078
#: intranet-tmpl/prog/en/includes/header.inc:59
17078
#: intranet-tmpl/prog/en/includes/header.inc:59
17079
#, c-format
17079
#, c-format
Lines 20608-20614 msgstr "%s%s %s%s" Link Here
20608
20608
20609
#. %1$s:  IF ( AutoLocation ) 
20609
#. %1$s:  IF ( AutoLocation ) 
20610
#. %2$s:  ELSE 
20610
#. %2$s:  ELSE 
20611
#. %3$s:  IF ( IndependantBranches ) 
20611
#. %3$s:  IF ( IndependentBranches )
20612
#. %4$s:  ELSE 
20612
#. %4$s:  ELSE 
20613
#: intranet-tmpl/prog/en/modules/auth.tt:49
20613
#: intranet-tmpl/prog/en/modules/auth.tt:49
20614
#, c-format
20614
#, c-format
(-)a/misc/translator/po/nl-BE-pref.po (-3 / +3 lines)
Lines 182-196 msgid "admin.pref#DebugLevel# some" Link Here
182
msgstr "een beetje"
182
msgstr "een beetje"
183
183
184
# Administration > Login options
184
# Administration > Login options
185
msgid "admin.pref#IndependantBranches# Don't prevent"
185
msgid "admin.pref#IndependentBranches# Don't prevent"
186
msgstr "Niet voorkomen"
186
msgstr "Niet voorkomen"
187
187
188
# Administration > Login options
188
# Administration > Login options
189
msgid "admin.pref#IndependantBranches# Prevent"
189
msgid "admin.pref#IndependentBranches# Prevent"
190
msgstr "Voorkom"
190
msgstr "Voorkom"
191
191
192
# Administration > Login options
192
# Administration > Login options
193
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
193
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
194
msgstr "dat medewerkers (maar geen superbibliothecarissen) van wijzigende objecten (reserveringen, items, gebruikers, enz.) tot andere bibliotheken behorend."
194
msgstr "dat medewerkers (maar geen superbibliothecarissen) van wijzigende objecten (reserveringen, items, gebruikers, enz.) tot andere bibliotheken behorend."
195
195
196
# Administration > Interface options
196
# Administration > Interface options
(-)a/misc/translator/po/nl-NL-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17054-17060 msgid "" Link Here
17054
"%s&quot; is neither permitted nor prohibited. %s %s "
17054
"%s&quot; is neither permitted nor prohibited. %s %s "
17055
msgstr ""
17055
msgstr ""
17056
17056
17057
#. %1$s:  IF ( IndependantBranches ) 
17057
#. %1$s:  IF ( IndependentBranches )
17058
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17058
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17059
#: intranet-tmpl/prog/en/includes/header.inc:59
17059
#: intranet-tmpl/prog/en/includes/header.inc:59
17060
#, c-format
17060
#, c-format
Lines 20486-20492 msgstr "" Link Here
20486
20486
20487
#. %1$s:  IF ( AutoLocation ) 
20487
#. %1$s:  IF ( AutoLocation ) 
20488
#. %2$s:  ELSE 
20488
#. %2$s:  ELSE 
20489
#. %3$s:  IF ( IndependantBranches ) 
20489
#. %3$s:  IF ( IndependentBranches )
20490
#. %4$s:  ELSE 
20490
#. %4$s:  ELSE 
20491
#: intranet-tmpl/prog/en/modules/auth.tt:49
20491
#: intranet-tmpl/prog/en/modules/auth.tt:49
20492
#, c-format
20492
#, c-format
(-)a/misc/translator/po/nl-NL-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/nn-NO-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17062-17068 msgid "" Link Here
17062
"%s&quot; is neither permitted nor prohibited. %s %s "
17062
"%s&quot; is neither permitted nor prohibited. %s %s "
17063
msgstr ""
17063
msgstr ""
17064
17064
17065
#. %1$s:  IF ( IndependantBranches ) 
17065
#. %1$s:  IF ( IndependentBranches )
17066
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17066
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17067
#: intranet-tmpl/prog/en/includes/header.inc:59
17067
#: intranet-tmpl/prog/en/includes/header.inc:59
17068
#, fuzzy, c-format
17068
#, fuzzy, c-format
Lines 20519-20525 msgstr "%s %s %s %s(%s)" Link Here
20519
20519
20520
#. %1$s:  IF ( AutoLocation ) 
20520
#. %1$s:  IF ( AutoLocation ) 
20521
#. %2$s:  ELSE 
20521
#. %2$s:  ELSE 
20522
#. %3$s:  IF ( IndependantBranches ) 
20522
#. %3$s:  IF ( IndependentBranches )
20523
#. %4$s:  ELSE 
20523
#. %4$s:  ELSE 
20524
#: intranet-tmpl/prog/en/modules/auth.tt:49
20524
#: intranet-tmpl/prog/en/modules/auth.tt:49
20525
#, fuzzy, c-format
20525
#, fuzzy, c-format
(-)a/misc/translator/po/nn-NO-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/pbr-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 15895-15901 msgid "" Link Here
15895
"%s&quot; is neither permitted nor prohibited. %s %s "
15895
"%s&quot; is neither permitted nor prohibited. %s %s "
15896
msgstr ""
15896
msgstr ""
15897
15897
15898
#. %1$s:  IF ( IndependantBranches ) 
15898
#. %1$s:  IF ( IndependentBranches )
15899
#. %2$s:  IF ( CAN_user_management ) 
15899
#. %2$s:  IF ( CAN_user_management ) 
15900
#: intranet-tmpl/prog/en/includes/header.inc:53
15900
#: intranet-tmpl/prog/en/includes/header.inc:53
15901
#, c-format
15901
#, c-format
Lines 19028-19034 msgstr "" Link Here
19028
19028
19029
#. %1$s:  IF ( AutoLocation ) 
19029
#. %1$s:  IF ( AutoLocation ) 
19030
#. %2$s:  ELSE 
19030
#. %2$s:  ELSE 
19031
#. %3$s:  IF ( IndependantBranches ) 
19031
#. %3$s:  IF ( IndependentBranches )
19032
#. %4$s:  ELSE 
19032
#. %4$s:  ELSE 
19033
#: intranet-tmpl/prog/en/modules/auth.tt:49
19033
#: intranet-tmpl/prog/en/modules/auth.tt:49
19034
#, c-format
19034
#, c-format
(-)a/misc/translator/po/pbr-pref.po (-3 / +3 lines)
Lines 1021-1027 msgstr "" Link Here
1021
# Administration > Login options
1021
# Administration > Login options
1022
# Administration > Login options
1022
# Administration > Login options
1023
# Administration > Login options
1023
# Administration > Login options
1024
msgid "admin.pref#IndependantBranches# Don't prevent"
1024
msgid "admin.pref#IndependentBranches# Don't prevent"
1025
msgstr ""
1025
msgstr ""
1026
1026
1027
# Administration > Login options
1027
# Administration > Login options
Lines 1059-1065 msgstr "" Link Here
1059
# Administration > Login options
1059
# Administration > Login options
1060
# Administration > Login options
1060
# Administration > Login options
1061
# Administration > Login options
1061
# Administration > Login options
1062
msgid "admin.pref#IndependantBranches# Prevent"
1062
msgid "admin.pref#IndependentBranches# Prevent"
1063
msgstr ""
1063
msgstr ""
1064
1064
1065
# Administration > Login options
1065
# Administration > Login options
Lines 1097-1103 msgstr "" Link Here
1097
# Administration > Login options
1097
# Administration > Login options
1098
# Administration > Login options
1098
# Administration > Login options
1099
# Administration > Login options
1099
# Administration > Login options
1100
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
1100
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
1101
msgstr ""
1101
msgstr ""
1102
1102
1103
# Administration > Interface options
1103
# Administration > Interface options
(-)a/misc/translator/po/pl-PL-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17073-17079 msgstr "" Link Here
17073
"%s %s &quot;%s&quot; jest dozwolony. %s &quot;%s&quot; jest zabroniony. %s "
17073
"%s %s &quot;%s&quot; jest dozwolony. %s &quot;%s&quot; jest zabroniony. %s "
17074
"&quot;%s&quot; nie jest ani zabroniony, ani dozwolony. %s %s "
17074
"&quot;%s&quot; nie jest ani zabroniony, ani dozwolony. %s %s "
17075
17075
17076
#. %1$s:  IF ( IndependantBranches ) 
17076
#. %1$s:  IF ( IndependentBranches )
17077
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17077
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17078
#: intranet-tmpl/prog/en/includes/header.inc:59
17078
#: intranet-tmpl/prog/en/includes/header.inc:59
17079
#, c-format
17079
#, c-format
Lines 20546-20552 msgstr "%s%s %s%s" Link Here
20546
20546
20547
#. %1$s:  IF ( AutoLocation ) 
20547
#. %1$s:  IF ( AutoLocation ) 
20548
#. %2$s:  ELSE 
20548
#. %2$s:  ELSE 
20549
#. %3$s:  IF ( IndependantBranches ) 
20549
#. %3$s:  IF ( IndependentBranches )
20550
#. %4$s:  ELSE 
20550
#. %4$s:  ELSE 
20551
#: intranet-tmpl/prog/en/modules/auth.tt:49
20551
#: intranet-tmpl/prog/en/modules/auth.tt:49
20552
#, c-format
20552
#, c-format
(-)a/misc/translator/po/pl-PL-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr "niektóre"
155
msgstr "niektóre"
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr "Nie zezwalaj "
159
msgstr "Nie zezwalaj "
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr "Nie zezwalaj"
163
msgstr "Nie zezwalaj"
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr "personelowi (nie dotyczy użytkowników superlibrarians) na modyfikację obiektów (rezerwacji, egzemplarzy, czytelników itp.) przypisanych do innych bibliotek."
167
msgstr "personelowi (nie dotyczy użytkowników superlibrarians) na modyfikację obiektów (rezerwacji, egzemplarzy, czytelników itp.) przypisanych do innych bibliotek."
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/prs-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 15896-15902 msgid "" Link Here
15896
"%s&quot; is neither permitted nor prohibited. %s %s "
15896
"%s&quot; is neither permitted nor prohibited. %s %s "
15897
msgstr ""
15897
msgstr ""
15898
15898
15899
#. %1$s:  IF ( IndependantBranches ) 
15899
#. %1$s:  IF ( IndependentBranches )
15900
#. %2$s:  IF ( CAN_user_management ) 
15900
#. %2$s:  IF ( CAN_user_management ) 
15901
#: intranet-tmpl/prog/en/includes/header.inc:53
15901
#: intranet-tmpl/prog/en/includes/header.inc:53
15902
#, c-format
15902
#, c-format
Lines 19029-19035 msgstr "" Link Here
19029
19029
19030
#. %1$s:  IF ( AutoLocation ) 
19030
#. %1$s:  IF ( AutoLocation ) 
19031
#. %2$s:  ELSE 
19031
#. %2$s:  ELSE 
19032
#. %3$s:  IF ( IndependantBranches ) 
19032
#. %3$s:  IF ( IndependentBranches )
19033
#. %4$s:  ELSE 
19033
#. %4$s:  ELSE 
19034
#: intranet-tmpl/prog/en/modules/auth.tt:49
19034
#: intranet-tmpl/prog/en/modules/auth.tt:49
19035
#, c-format
19035
#, c-format
(-)a/misc/translator/po/prs-pref.po (-3 / +3 lines)
Lines 1453-1459 msgstr "" Link Here
1453
# Administration > Login options
1453
# Administration > Login options
1454
# Administration > Login options
1454
# Administration > Login options
1455
# Administration > Login options
1455
# Administration > Login options
1456
msgid "admin.pref#IndependantBranches# Don't prevent"
1456
msgid "admin.pref#IndependentBranches# Don't prevent"
1457
msgstr ""
1457
msgstr ""
1458
1458
1459
# Administration > Login options
1459
# Administration > Login options
Lines 1507-1513 msgstr "" Link Here
1507
# Administration > Login options
1507
# Administration > Login options
1508
# Administration > Login options
1508
# Administration > Login options
1509
# Administration > Login options
1509
# Administration > Login options
1510
msgid "admin.pref#IndependantBranches# Prevent"
1510
msgid "admin.pref#IndependentBranches# Prevent"
1511
msgstr ""
1511
msgstr ""
1512
1512
1513
# Administration > Login options
1513
# Administration > Login options
Lines 1561-1567 msgstr "" Link Here
1561
# Administration > Login options
1561
# Administration > Login options
1562
# Administration > Login options
1562
# Administration > Login options
1563
# Administration > Login options
1563
# Administration > Login options
1564
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
1564
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
1565
msgstr ""
1565
msgstr ""
1566
1566
1567
# Administration > Interface options
1567
# Administration > Interface options
(-)a/misc/translator/po/pt-BR-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17079-17085 msgstr "" Link Here
17079
"%s %s &quot;%s&quot; é permitido. %s &quot;%s&quot; é proibido. %s &quot;%"
17079
"%s %s &quot;%s&quot; é permitido. %s &quot;%s&quot; é proibido. %s &quot;%"
17080
"s&quot; não é permitido nem proibido. %s %s "
17080
"s&quot; não é permitido nem proibido. %s %s "
17081
17081
17082
#. %1$s:  IF ( IndependantBranches ) 
17082
#. %1$s:  IF ( IndependentBranches )
17083
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17083
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17084
#: intranet-tmpl/prog/en/includes/header.inc:59
17084
#: intranet-tmpl/prog/en/includes/header.inc:59
17085
#, c-format
17085
#, c-format
Lines 20612-20618 msgstr "%s%s %s%s" Link Here
20612
20612
20613
#. %1$s:  IF ( AutoLocation ) 
20613
#. %1$s:  IF ( AutoLocation ) 
20614
#. %2$s:  ELSE 
20614
#. %2$s:  ELSE 
20615
#. %3$s:  IF ( IndependantBranches ) 
20615
#. %3$s:  IF ( IndependentBranches )
20616
#. %4$s:  ELSE 
20616
#. %4$s:  ELSE 
20617
#: intranet-tmpl/prog/en/modules/auth.tt:49
20617
#: intranet-tmpl/prog/en/modules/auth.tt:49
20618
#, c-format
20618
#, c-format
(-)a/misc/translator/po/pt-BR-pref.po (-6 / +6 lines)
Lines 155-170 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr "admin.pref#DebugLevel# alguns"
155
msgstr "admin.pref#DebugLevel# alguns"
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr "admin.pref#IndependantBranches# Não impeça"
159
msgstr "admin.pref#IndependentBranches# Não impeça"
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr "admin.pref#IndependantBranches# Impedir"
163
msgstr "admin.pref#IndependentBranches# Impedir"
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr "admin.pref#IndependantBranches# equipe (bibliotecários, mas não super) de modificação de objetos (seguro, itens, clientes, etc) pertencentes a outras bibliotecas."
167
msgstr "admin.pref#IndependentBranches# equipe (bibliotecários, mas não super) de modificação de objetos (seguro, itens, clientes, etc) pertencentes a outras bibliotecas."
168
168
169
# Administration > Interface options
169
# Administration > Interface options
170
msgid "admin.pref#KohaAdminEmailAddress# Use"
170
msgid "admin.pref#KohaAdminEmailAddress# Use"
(-)a/misc/translator/po/pt-PT-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17063-17069 msgid "" Link Here
17063
"%s&quot; is neither permitted nor prohibited. %s %s "
17063
"%s&quot; is neither permitted nor prohibited. %s %s "
17064
msgstr ""
17064
msgstr ""
17065
17065
17066
#. %1$s:  IF ( IndependantBranches ) 
17066
#. %1$s:  IF ( IndependentBranches )
17067
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17067
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17068
#: intranet-tmpl/prog/en/includes/header.inc:59
17068
#: intranet-tmpl/prog/en/includes/header.inc:59
17069
#, fuzzy, c-format
17069
#, fuzzy, c-format
Lines 20531-20537 msgstr "%s %s %s %s(%s)" Link Here
20531
20531
20532
#. %1$s:  IF ( AutoLocation ) 
20532
#. %1$s:  IF ( AutoLocation ) 
20533
#. %2$s:  ELSE 
20533
#. %2$s:  ELSE 
20534
#. %3$s:  IF ( IndependantBranches ) 
20534
#. %3$s:  IF ( IndependentBranches )
20535
#. %4$s:  ELSE 
20535
#. %4$s:  ELSE 
20536
#: intranet-tmpl/prog/en/modules/auth.tt:49
20536
#: intranet-tmpl/prog/en/modules/auth.tt:49
20537
#, fuzzy, c-format
20537
#, fuzzy, c-format
(-)a/misc/translator/po/pt-PT-pref.po (-6 / +6 lines)
Lines 155-170 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr "admin.pref#DebugLevel# Alguns"
155
msgstr "admin.pref#DebugLevel# Alguns"
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr "admin.pref#IndependantBranches# Não evitar"
159
msgstr "admin.pref#IndependentBranches# Não evitar"
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr "admin.pref#IndependantBranches# Prevenir"
163
msgstr "admin.pref#IndependentBranches# Prevenir"
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr "admin.pref#IndependantBranches# pessoal (mas não superlibrarians) de modificação de objetos (segura, itens, clientes, etc) pertencentes a outras bibliotecas."
167
msgstr "admin.pref#IndependentBranches# pessoal (mas não superlibrarians) de modificação de objetos (segura, itens, clientes, etc) pertencentes a outras bibliotecas."
168
168
169
# Administration > Interface options
169
# Administration > Interface options
170
msgid "admin.pref#KohaAdminEmailAddress# Use"
170
msgid "admin.pref#KohaAdminEmailAddress# Use"
(-)a/misc/translator/po/ro-RO-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17069-17075 msgid "" Link Here
17069
"%s&quot; is neither permitted nor prohibited. %s %s "
17069
"%s&quot; is neither permitted nor prohibited. %s %s "
17070
msgstr ""
17070
msgstr ""
17071
17071
17072
#. %1$s:  IF ( IndependantBranches ) 
17072
#. %1$s:  IF ( IndependentBranches )
17073
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17073
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17074
#: intranet-tmpl/prog/en/includes/header.inc:59
17074
#: intranet-tmpl/prog/en/includes/header.inc:59
17075
#, fuzzy, c-format
17075
#, fuzzy, c-format
Lines 20527-20533 msgstr "%s %s %s %s(%s)" Link Here
20527
20527
20528
#. %1$s:  IF ( AutoLocation ) 
20528
#. %1$s:  IF ( AutoLocation ) 
20529
#. %2$s:  ELSE 
20529
#. %2$s:  ELSE 
20530
#. %3$s:  IF ( IndependantBranches ) 
20530
#. %3$s:  IF ( IndependentBranches )
20531
#. %4$s:  ELSE 
20531
#. %4$s:  ELSE 
20532
#: intranet-tmpl/prog/en/modules/auth.tt:49
20532
#: intranet-tmpl/prog/en/modules/auth.tt:49
20533
#, fuzzy, c-format
20533
#, fuzzy, c-format
(-)a/misc/translator/po/ro-RO-pref.po (-6 / +6 lines)
Lines 155-170 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr "admin.pref#DebugLevel# unele"
155
msgstr "admin.pref#DebugLevel# unele"
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr "admin.pref#IndependantBranches# Nu împiedică"
159
msgstr "admin.pref#IndependentBranches# Nu împiedică"
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr "admin.pref#IndependantBranches# Împiedică"
163
msgstr "admin.pref#IndependentBranches# Împiedică"
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr "admin.pref#IndependantBranches# personalul ( dar nu superbibilotecarii ) să modifice obiecte ( deţineri, articole, patronii, etc) aparţinând altor biblioteci."
167
msgstr "admin.pref#IndependentBranches# personalul ( dar nu superbibilotecarii ) să modifice obiecte ( deţineri, articole, patronii, etc) aparţinând altor biblioteci."
168
168
169
# Administration > Interface options
169
# Administration > Interface options
170
msgid "admin.pref#KohaAdminEmailAddress# Use"
170
msgid "admin.pref#KohaAdminEmailAddress# Use"
(-)a/misc/translator/po/ru-RU-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17076-17082 msgid "" Link Here
17076
"%s&quot; is neither permitted nor prohibited. %s %s "
17076
"%s&quot; is neither permitted nor prohibited. %s %s "
17077
msgstr ""
17077
msgstr ""
17078
17078
17079
#. %1$s:  IF ( IndependantBranches ) 
17079
#. %1$s:  IF ( IndependentBranches )
17080
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17080
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17081
#: intranet-tmpl/prog/en/includes/header.inc:59
17081
#: intranet-tmpl/prog/en/includes/header.inc:59
17082
#, fuzzy, c-format
17082
#, fuzzy, c-format
Lines 20573-20579 msgstr "%s %s %s %s(%s)" Link Here
20573
20573
20574
#. %1$s:  IF ( AutoLocation ) 
20574
#. %1$s:  IF ( AutoLocation ) 
20575
#. %2$s:  ELSE 
20575
#. %2$s:  ELSE 
20576
#. %3$s:  IF ( IndependantBranches ) 
20576
#. %3$s:  IF ( IndependentBranches )
20577
#. %4$s:  ELSE 
20577
#. %4$s:  ELSE 
20578
#: intranet-tmpl/prog/en/modules/auth.tt:49
20578
#: intranet-tmpl/prog/en/modules/auth.tt:49
20579
#, fuzzy, c-format
20579
#, fuzzy, c-format
(-)a/misc/translator/po/ru-RU-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr "некоторое количество "
155
msgstr "некоторое количество "
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr "Не препятствовать "
159
msgstr "Не препятствовать "
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr "Препятствовать "
163
msgstr "Препятствовать "
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr "персоналу библиотеки (кроме супербиблиотекарей) изменять объекты (резервирование, экземпляры, посетители и т.д.), принадлежащие другим библиотекам."
167
msgstr "персоналу библиотеки (кроме супербиблиотекарей) изменять объекты (резервирование, экземпляры, посетители и т.д.), принадлежащие другим библиотекам."
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/sd-PK-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17053-17059 msgid "" Link Here
17053
"%s&quot; is neither permitted nor prohibited. %s %s "
17053
"%s&quot; is neither permitted nor prohibited. %s %s "
17054
msgstr ""
17054
msgstr ""
17055
17055
17056
#. %1$s:  IF ( IndependantBranches ) 
17056
#. %1$s:  IF ( IndependentBranches )
17057
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17057
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17058
#: intranet-tmpl/prog/en/includes/header.inc:59
17058
#: intranet-tmpl/prog/en/includes/header.inc:59
17059
#, c-format
17059
#, c-format
Lines 20485-20491 msgstr "" Link Here
20485
20485
20486
#. %1$s:  IF ( AutoLocation ) 
20486
#. %1$s:  IF ( AutoLocation ) 
20487
#. %2$s:  ELSE 
20487
#. %2$s:  ELSE 
20488
#. %3$s:  IF ( IndependantBranches ) 
20488
#. %3$s:  IF ( IndependentBranches )
20489
#. %4$s:  ELSE 
20489
#. %4$s:  ELSE 
20490
#: intranet-tmpl/prog/en/modules/auth.tt:49
20490
#: intranet-tmpl/prog/en/modules/auth.tt:49
20491
#, c-format
20491
#, c-format
(-)a/misc/translator/po/sd-PK-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/sk-SK-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 15902-15908 msgid "" Link Here
15902
"%s&quot; is neither permitted nor prohibited. %s %s "
15902
"%s&quot; is neither permitted nor prohibited. %s %s "
15903
msgstr ""
15903
msgstr ""
15904
15904
15905
#. %1$s:  IF ( IndependantBranches ) 
15905
#. %1$s:  IF ( IndependentBranches )
15906
#. %2$s:  IF ( CAN_user_management ) 
15906
#. %2$s:  IF ( CAN_user_management ) 
15907
#: intranet-tmpl/prog/en/includes/header.inc:53
15907
#: intranet-tmpl/prog/en/includes/header.inc:53
15908
#, fuzzy, c-format
15908
#, fuzzy, c-format
Lines 19049-19055 msgstr "%s %s %s %s(%s)" Link Here
19049
19049
19050
#. %1$s:  IF ( AutoLocation ) 
19050
#. %1$s:  IF ( AutoLocation ) 
19051
#. %2$s:  ELSE 
19051
#. %2$s:  ELSE 
19052
#. %3$s:  IF ( IndependantBranches ) 
19052
#. %3$s:  IF ( IndependentBranches )
19053
#. %4$s:  ELSE 
19053
#. %4$s:  ELSE 
19054
#: intranet-tmpl/prog/en/modules/auth.tt:49
19054
#: intranet-tmpl/prog/en/modules/auth.tt:49
19055
#, fuzzy, c-format
19055
#, fuzzy, c-format
(-)a/misc/translator/po/sk-SK-pref.po (-3 / +3 lines)
Lines 292-298 msgstr "" Link Here
292
# Administration > Login options
292
# Administration > Login options
293
# Administration > Login options
293
# Administration > Login options
294
# Administration > Login options
294
# Administration > Login options
295
msgid "admin.pref#IndependantBranches# Don't prevent"
295
msgid "admin.pref#IndependentBranches# Don't prevent"
296
msgstr ""
296
msgstr ""
297
297
298
# Administration > Login options
298
# Administration > Login options
Lines 303-309 msgstr "" Link Here
303
# Administration > Login options
303
# Administration > Login options
304
# Administration > Login options
304
# Administration > Login options
305
# Administration > Login options
305
# Administration > Login options
306
msgid "admin.pref#IndependantBranches# Prevent"
306
msgid "admin.pref#IndependentBranches# Prevent"
307
msgstr ""
307
msgstr ""
308
308
309
# Administration > Login options
309
# Administration > Login options
Lines 314-320 msgstr "" Link Here
314
# Administration > Login options
314
# Administration > Login options
315
# Administration > Login options
315
# Administration > Login options
316
# Administration > Login options
316
# Administration > Login options
317
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
317
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
318
msgstr ""
318
msgstr ""
319
319
320
# Administration > Interface options
320
# Administration > Interface options
(-)a/misc/translator/po/sl-SI-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 15895-15901 msgid "" Link Here
15895
"%s&quot; is neither permitted nor prohibited. %s %s "
15895
"%s&quot; is neither permitted nor prohibited. %s %s "
15896
msgstr ""
15896
msgstr ""
15897
15897
15898
#. %1$s:  IF ( IndependantBranches ) 
15898
#. %1$s:  IF ( IndependentBranches )
15899
#. %2$s:  IF ( CAN_user_management ) 
15899
#. %2$s:  IF ( CAN_user_management ) 
15900
#: intranet-tmpl/prog/en/includes/header.inc:53
15900
#: intranet-tmpl/prog/en/includes/header.inc:53
15901
#, c-format
15901
#, c-format
Lines 19028-19034 msgstr "" Link Here
19028
19028
19029
#. %1$s:  IF ( AutoLocation ) 
19029
#. %1$s:  IF ( AutoLocation ) 
19030
#. %2$s:  ELSE 
19030
#. %2$s:  ELSE 
19031
#. %3$s:  IF ( IndependantBranches ) 
19031
#. %3$s:  IF ( IndependentBranches )
19032
#. %4$s:  ELSE 
19032
#. %4$s:  ELSE 
19033
#: intranet-tmpl/prog/en/modules/auth.tt:49
19033
#: intranet-tmpl/prog/en/modules/auth.tt:49
19034
#, c-format
19034
#, c-format
(-)a/misc/translator/po/sl-SI-pref.po (-3 / +3 lines)
Lines 346-352 msgstr "" Link Here
346
# Administration > Login options
346
# Administration > Login options
347
# Administration > Login options
347
# Administration > Login options
348
# Administration > Login options
348
# Administration > Login options
349
msgid "admin.pref#IndependantBranches# Don't prevent"
349
msgid "admin.pref#IndependentBranches# Don't prevent"
350
msgstr ""
350
msgstr ""
351
351
352
# Administration > Login options
352
# Administration > Login options
Lines 359-365 msgstr "" Link Here
359
# Administration > Login options
359
# Administration > Login options
360
# Administration > Login options
360
# Administration > Login options
361
# Administration > Login options
361
# Administration > Login options
362
msgid "admin.pref#IndependantBranches# Prevent"
362
msgid "admin.pref#IndependentBranches# Prevent"
363
msgstr ""
363
msgstr ""
364
364
365
# Administration > Login options
365
# Administration > Login options
Lines 372-378 msgstr "" Link Here
372
# Administration > Login options
372
# Administration > Login options
373
# Administration > Login options
373
# Administration > Login options
374
# Administration > Login options
374
# Administration > Login options
375
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
375
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
376
msgstr ""
376
msgstr ""
377
377
378
# Administration > Interface options
378
# Administration > Interface options
(-)a/misc/translator/po/sq-AL-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 15896-15902 msgid "" Link Here
15896
"%s&quot; is neither permitted nor prohibited. %s %s "
15896
"%s&quot; is neither permitted nor prohibited. %s %s "
15897
msgstr ""
15897
msgstr ""
15898
15898
15899
#. %1$s:  IF ( IndependantBranches ) 
15899
#. %1$s:  IF ( IndependentBranches )
15900
#. %2$s:  IF ( CAN_user_management ) 
15900
#. %2$s:  IF ( CAN_user_management ) 
15901
#: intranet-tmpl/prog/en/includes/header.inc:53
15901
#: intranet-tmpl/prog/en/includes/header.inc:53
15902
#, c-format
15902
#, c-format
Lines 19029-19035 msgstr "" Link Here
19029
19029
19030
#. %1$s:  IF ( AutoLocation ) 
19030
#. %1$s:  IF ( AutoLocation ) 
19031
#. %2$s:  ELSE 
19031
#. %2$s:  ELSE 
19032
#. %3$s:  IF ( IndependantBranches ) 
19032
#. %3$s:  IF ( IndependentBranches )
19033
#. %4$s:  ELSE 
19033
#. %4$s:  ELSE 
19034
#: intranet-tmpl/prog/en/modules/auth.tt:49
19034
#: intranet-tmpl/prog/en/modules/auth.tt:49
19035
#, c-format
19035
#, c-format
(-)a/misc/translator/po/sq-AL-pref.po (-3 / +3 lines)
Lines 1750-1756 msgstr "" Link Here
1750
# Administration > Login options
1750
# Administration > Login options
1751
# Administration > Login options
1751
# Administration > Login options
1752
# Administration > Login options
1752
# Administration > Login options
1753
msgid "admin.pref#IndependantBranches# Don't prevent"
1753
msgid "admin.pref#IndependentBranches# Don't prevent"
1754
msgstr ""
1754
msgstr ""
1755
1755
1756
# Administration > Login options
1756
# Administration > Login options
Lines 1815-1821 msgstr "" Link Here
1815
# Administration > Login options
1815
# Administration > Login options
1816
# Administration > Login options
1816
# Administration > Login options
1817
# Administration > Login options
1817
# Administration > Login options
1818
msgid "admin.pref#IndependantBranches# Prevent"
1818
msgid "admin.pref#IndependentBranches# Prevent"
1819
msgstr ""
1819
msgstr ""
1820
1820
1821
# Administration > Login options
1821
# Administration > Login options
Lines 1880-1886 msgstr "" Link Here
1880
# Administration > Login options
1880
# Administration > Login options
1881
# Administration > Login options
1881
# Administration > Login options
1882
# Administration > Login options
1882
# Administration > Login options
1883
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
1883
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
1884
msgstr ""
1884
msgstr ""
1885
1885
1886
# Administration > Interface options
1886
# Administration > Interface options
(-)a/misc/translator/po/sr-Cyrl-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 15895-15901 msgid "" Link Here
15895
"%s&quot; is neither permitted nor prohibited. %s %s "
15895
"%s&quot; is neither permitted nor prohibited. %s %s "
15896
msgstr ""
15896
msgstr ""
15897
15897
15898
#. %1$s:  IF ( IndependantBranches ) 
15898
#. %1$s:  IF ( IndependentBranches )
15899
#. %2$s:  IF ( CAN_user_management ) 
15899
#. %2$s:  IF ( CAN_user_management ) 
15900
#: intranet-tmpl/prog/en/includes/header.inc:53
15900
#: intranet-tmpl/prog/en/includes/header.inc:53
15901
#, c-format
15901
#, c-format
Lines 19028-19034 msgstr "" Link Here
19028
19028
19029
#. %1$s:  IF ( AutoLocation ) 
19029
#. %1$s:  IF ( AutoLocation ) 
19030
#. %2$s:  ELSE 
19030
#. %2$s:  ELSE 
19031
#. %3$s:  IF ( IndependantBranches ) 
19031
#. %3$s:  IF ( IndependentBranches )
19032
#. %4$s:  ELSE 
19032
#. %4$s:  ELSE 
19033
#: intranet-tmpl/prog/en/modules/auth.tt:49
19033
#: intranet-tmpl/prog/en/modules/auth.tt:49
19034
#, c-format
19034
#, c-format
(-)a/misc/translator/po/sr-Cyrl-pref.po (-3 / +3 lines)
Lines 1102-1108 msgstr "" Link Here
1102
# Administration > Login options
1102
# Administration > Login options
1103
# Administration > Login options
1103
# Administration > Login options
1104
# Administration > Login options
1104
# Administration > Login options
1105
msgid "admin.pref#IndependantBranches# Don't prevent"
1105
msgid "admin.pref#IndependentBranches# Don't prevent"
1106
msgstr ""
1106
msgstr ""
1107
1107
1108
# Administration > Login options
1108
# Administration > Login options
Lines 1143-1149 msgstr "" Link Here
1143
# Administration > Login options
1143
# Administration > Login options
1144
# Administration > Login options
1144
# Administration > Login options
1145
# Administration > Login options
1145
# Administration > Login options
1146
msgid "admin.pref#IndependantBranches# Prevent"
1146
msgid "admin.pref#IndependentBranches# Prevent"
1147
msgstr ""
1147
msgstr ""
1148
1148
1149
# Administration > Login options
1149
# Administration > Login options
Lines 1184-1190 msgstr "" Link Here
1184
# Administration > Login options
1184
# Administration > Login options
1185
# Administration > Login options
1185
# Administration > Login options
1186
# Administration > Login options
1186
# Administration > Login options
1187
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
1187
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
1188
msgstr ""
1188
msgstr ""
1189
1189
1190
# Administration > Interface options
1190
# Administration > Interface options
(-)a/misc/translator/po/sv-SE-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17054-17060 msgid "" Link Here
17054
"%s&quot; is neither permitted nor prohibited. %s %s "
17054
"%s&quot; is neither permitted nor prohibited. %s %s "
17055
msgstr ""
17055
msgstr ""
17056
17056
17057
#. %1$s:  IF ( IndependantBranches ) 
17057
#. %1$s:  IF ( IndependentBranches )
17058
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17058
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17059
#: intranet-tmpl/prog/en/includes/header.inc:59
17059
#: intranet-tmpl/prog/en/includes/header.inc:59
17060
#, c-format
17060
#, c-format
Lines 20486-20492 msgstr "" Link Here
20486
20486
20487
#. %1$s:  IF ( AutoLocation ) 
20487
#. %1$s:  IF ( AutoLocation ) 
20488
#. %2$s:  ELSE 
20488
#. %2$s:  ELSE 
20489
#. %3$s:  IF ( IndependantBranches ) 
20489
#. %3$s:  IF ( IndependentBranches )
20490
#. %4$s:  ELSE 
20490
#. %4$s:  ELSE 
20491
#: intranet-tmpl/prog/en/modules/auth.tt:49
20491
#: intranet-tmpl/prog/en/modules/auth.tt:49
20492
#, c-format
20492
#, c-format
(-)a/misc/translator/po/sv-SE-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/ta-LK-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 15895-15901 msgid "" Link Here
15895
"%s&quot; is neither permitted nor prohibited. %s %s "
15895
"%s&quot; is neither permitted nor prohibited. %s %s "
15896
msgstr ""
15896
msgstr ""
15897
15897
15898
#. %1$s:  IF ( IndependantBranches ) 
15898
#. %1$s:  IF ( IndependentBranches )
15899
#. %2$s:  IF ( CAN_user_management ) 
15899
#. %2$s:  IF ( CAN_user_management ) 
15900
#: intranet-tmpl/prog/en/includes/header.inc:53
15900
#: intranet-tmpl/prog/en/includes/header.inc:53
15901
#, c-format
15901
#, c-format
Lines 19028-19034 msgstr "" Link Here
19028
19028
19029
#. %1$s:  IF ( AutoLocation ) 
19029
#. %1$s:  IF ( AutoLocation ) 
19030
#. %2$s:  ELSE 
19030
#. %2$s:  ELSE 
19031
#. %3$s:  IF ( IndependantBranches ) 
19031
#. %3$s:  IF ( IndependentBranches )
19032
#. %4$s:  ELSE 
19032
#. %4$s:  ELSE 
19033
#: intranet-tmpl/prog/en/modules/auth.tt:49
19033
#: intranet-tmpl/prog/en/modules/auth.tt:49
19034
#, c-format
19034
#, c-format
(-)a/misc/translator/po/ta-LK-pref.po (-3 / +3 lines)
Lines 616-622 msgstr "" Link Here
616
# Administration > Login options
616
# Administration > Login options
617
# Administration > Login options
617
# Administration > Login options
618
# Administration > Login options
618
# Administration > Login options
619
msgid "admin.pref#IndependantBranches# Don't prevent"
619
msgid "admin.pref#IndependentBranches# Don't prevent"
620
msgstr ""
620
msgstr ""
621
621
622
# Administration > Login options
622
# Administration > Login options
Lines 639-645 msgstr "" Link Here
639
# Administration > Login options
639
# Administration > Login options
640
# Administration > Login options
640
# Administration > Login options
641
# Administration > Login options
641
# Administration > Login options
642
msgid "admin.pref#IndependantBranches# Prevent"
642
msgid "admin.pref#IndependentBranches# Prevent"
643
msgstr ""
643
msgstr ""
644
644
645
# Administration > Login options
645
# Administration > Login options
Lines 662-668 msgstr "" Link Here
662
# Administration > Login options
662
# Administration > Login options
663
# Administration > Login options
663
# Administration > Login options
664
# Administration > Login options
664
# Administration > Login options
665
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
665
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
666
msgstr ""
666
msgstr ""
667
667
668
# Administration > Interface options
668
# Administration > Interface options
(-)a/misc/translator/po/tet-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17074-17080 msgstr "" Link Here
17074
"%s %s &quot;%s&quot; bele. %s &quot;%s&quot; labele. %s &quot;%s&quot; nein "
17074
"%s %s &quot;%s&quot; bele. %s &quot;%s&quot; labele. %s &quot;%s&quot; nein "
17075
"permite ka la permite. %s %s "
17075
"permite ka la permite. %s %s "
17076
17076
17077
#. %1$s:  IF ( IndependantBranches ) 
17077
#. %1$s:  IF ( IndependentBranches )
17078
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17078
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17079
#: intranet-tmpl/prog/en/includes/header.inc:59
17079
#: intranet-tmpl/prog/en/includes/header.inc:59
17080
#, c-format
17080
#, c-format
Lines 20581-20587 msgstr "%s%s %s%s" Link Here
20581
20581
20582
#. %1$s:  IF ( AutoLocation ) 
20582
#. %1$s:  IF ( AutoLocation ) 
20583
#. %2$s:  ELSE 
20583
#. %2$s:  ELSE 
20584
#. %3$s:  IF ( IndependantBranches ) 
20584
#. %3$s:  IF ( IndependentBranches )
20585
#. %4$s:  ELSE 
20585
#. %4$s:  ELSE 
20586
#: intranet-tmpl/prog/en/modules/auth.tt:49
20586
#: intranet-tmpl/prog/en/modules/auth.tt:49
20587
#, c-format
20587
#, c-format
(-)a/misc/translator/po/tet-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/th-THA-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17054-17060 msgid "" Link Here
17054
"%s&quot; is neither permitted nor prohibited. %s %s "
17054
"%s&quot; is neither permitted nor prohibited. %s %s "
17055
msgstr ""
17055
msgstr ""
17056
17056
17057
#. %1$s:  IF ( IndependantBranches ) 
17057
#. %1$s:  IF ( IndependentBranches )
17058
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17058
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17059
#: intranet-tmpl/prog/en/includes/header.inc:59
17059
#: intranet-tmpl/prog/en/includes/header.inc:59
17060
#, c-format
17060
#, c-format
Lines 20486-20492 msgstr "" Link Here
20486
20486
20487
#. %1$s:  IF ( AutoLocation ) 
20487
#. %1$s:  IF ( AutoLocation ) 
20488
#. %2$s:  ELSE 
20488
#. %2$s:  ELSE 
20489
#. %3$s:  IF ( IndependantBranches ) 
20489
#. %3$s:  IF ( IndependentBranches )
20490
#. %4$s:  ELSE 
20490
#. %4$s:  ELSE 
20491
#: intranet-tmpl/prog/en/modules/auth.tt:49
20491
#: intranet-tmpl/prog/en/modules/auth.tt:49
20492
#, c-format
20492
#, c-format
(-)a/misc/translator/po/th-THA-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/tl-PH-pref.po (-3 / +3 lines)
Lines 1534-1540 msgstr "" Link Here
1534
# Administration > Login options
1534
# Administration > Login options
1535
# Administration > Login options
1535
# Administration > Login options
1536
# Administration > Login options
1536
# Administration > Login options
1537
msgid "admin.pref#IndependantBranches# Don't prevent"
1537
msgid "admin.pref#IndependentBranches# Don't prevent"
1538
msgstr ""
1538
msgstr ""
1539
1539
1540
# Administration > Login options
1540
# Administration > Login options
Lines 1591-1597 msgstr "" Link Here
1591
# Administration > Login options
1591
# Administration > Login options
1592
# Administration > Login options
1592
# Administration > Login options
1593
# Administration > Login options
1593
# Administration > Login options
1594
msgid "admin.pref#IndependantBranches# Prevent"
1594
msgid "admin.pref#IndependentBranches# Prevent"
1595
msgstr ""
1595
msgstr ""
1596
1596
1597
# Administration > Login options
1597
# Administration > Login options
Lines 1648-1654 msgstr "" Link Here
1648
# Administration > Login options
1648
# Administration > Login options
1649
# Administration > Login options
1649
# Administration > Login options
1650
# Administration > Login options
1650
# Administration > Login options
1651
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
1651
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
1652
msgstr ""
1652
msgstr ""
1653
1653
1654
# Administration > Interface options
1654
# Administration > Interface options
(-)a/misc/translator/po/tr-TR-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17069-17075 msgstr "" Link Here
17069
"%s %s &quot;%s&quot; İzin verilmiş. %s &quot;%s&quot; yasak. %s &quot;%"
17069
"%s %s &quot;%s&quot; İzin verilmiş. %s &quot;%s&quot; yasak. %s &quot;%"
17070
"s&quot; is ne izin verilmiş ne  de yasak. %s %s "
17070
"s&quot; is ne izin verilmiş ne  de yasak. %s %s "
17071
17071
17072
#. %1$s:  IF ( IndependantBranches ) 
17072
#. %1$s:  IF ( IndependentBranches )
17073
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17073
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17074
#: intranet-tmpl/prog/en/includes/header.inc:59
17074
#: intranet-tmpl/prog/en/includes/header.inc:59
17075
#, c-format
17075
#, c-format
Lines 20552-20558 msgstr "%s%s %s%s" Link Here
20552
20552
20553
#. %1$s:  IF ( AutoLocation ) 
20553
#. %1$s:  IF ( AutoLocation ) 
20554
#. %2$s:  ELSE 
20554
#. %2$s:  ELSE 
20555
#. %3$s:  IF ( IndependantBranches ) 
20555
#. %3$s:  IF ( IndependentBranches )
20556
#. %4$s:  ELSE 
20556
#. %4$s:  ELSE 
20557
#: intranet-tmpl/prog/en/modules/auth.tt:49
20557
#: intranet-tmpl/prog/en/modules/auth.tt:49
20558
#, c-format
20558
#, c-format
(-)a/misc/translator/po/tr-TR-pref.po (-5 / +5 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr "admin.pref#DebugLevel# bazı"
155
msgstr "admin.pref#DebugLevel# bazı"
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr "admin.pref#IndependantBranches# Engelleme"
159
msgstr "admin.pref#IndependentBranches# Engelleme"
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr "admin.pref#IndependantBranches# Engelle"
163
msgstr "admin.pref#IndependentBranches# Engelle"
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/uk-UA-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17077-17083 msgid "" Link Here
17077
"%s&quot; is neither permitted nor prohibited. %s %s "
17077
"%s&quot; is neither permitted nor prohibited. %s %s "
17078
msgstr ""
17078
msgstr ""
17079
17079
17080
#. %1$s:  IF ( IndependantBranches ) 
17080
#. %1$s:  IF ( IndependentBranches )
17081
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17081
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17082
#: intranet-tmpl/prog/en/includes/header.inc:59
17082
#: intranet-tmpl/prog/en/includes/header.inc:59
17083
#, fuzzy, c-format
17083
#, fuzzy, c-format
Lines 20576-20582 msgstr "%s %s %s %s(%s)" Link Here
20576
20576
20577
#. %1$s:  IF ( AutoLocation ) 
20577
#. %1$s:  IF ( AutoLocation ) 
20578
#. %2$s:  ELSE 
20578
#. %2$s:  ELSE 
20579
#. %3$s:  IF ( IndependantBranches ) 
20579
#. %3$s:  IF ( IndependentBranches )
20580
#. %4$s:  ELSE 
20580
#. %4$s:  ELSE 
20581
#: intranet-tmpl/prog/en/modules/auth.tt:49
20581
#: intranet-tmpl/prog/en/modules/auth.tt:49
20582
#, fuzzy, c-format
20582
#, fuzzy, c-format
(-)a/misc/translator/po/uk-UA-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr "деяку кількість "
155
msgstr "деяку кількість "
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr "Не перешкоджати "
159
msgstr "Не перешкоджати "
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr "Перешкоджати "
163
msgstr "Перешкоджати "
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr "персоналу бібліотеки (окрім супербібліотекарів) змінювати об’єкти (резервування, примірники, відвідувачі тощо), що належать іншим бібліотекам."
167
msgstr "персоналу бібліотеки (окрім супербібліотекарів) змінювати об’єкти (резервування, примірники, відвідувачі тощо), що належать іншим бібліотекам."
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/ur-Arab-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 17054-17060 msgid "" Link Here
17054
"%s&quot; is neither permitted nor prohibited. %s %s "
17054
"%s&quot; is neither permitted nor prohibited. %s %s "
17055
msgstr ""
17055
msgstr ""
17056
17056
17057
#. %1$s:  IF ( IndependantBranches ) 
17057
#. %1$s:  IF ( IndependentBranches )
17058
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17058
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue ) 
17059
#: intranet-tmpl/prog/en/includes/header.inc:59
17059
#: intranet-tmpl/prog/en/includes/header.inc:59
17060
#, c-format
17060
#, c-format
Lines 20486-20492 msgstr "" Link Here
20486
20486
20487
#. %1$s:  IF ( AutoLocation ) 
20487
#. %1$s:  IF ( AutoLocation ) 
20488
#. %2$s:  ELSE 
20488
#. %2$s:  ELSE 
20489
#. %3$s:  IF ( IndependantBranches ) 
20489
#. %3$s:  IF ( IndependentBranches )
20490
#. %4$s:  ELSE 
20490
#. %4$s:  ELSE 
20491
#: intranet-tmpl/prog/en/modules/auth.tt:49
20491
#: intranet-tmpl/prog/en/modules/auth.tt:49
20492
#, c-format
20492
#, c-format
(-)a/misc/translator/po/ur-Arab-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr ""
155
msgstr ""
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr ""
159
msgstr ""
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr ""
163
msgstr ""
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr ""
167
msgstr ""
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/vi-VN-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 15895-15901 msgid "" Link Here
15895
"%s&quot; is neither permitted nor prohibited. %s %s "
15895
"%s&quot; is neither permitted nor prohibited. %s %s "
15896
msgstr ""
15896
msgstr ""
15897
15897
15898
#. %1$s:  IF ( IndependantBranches ) 
15898
#. %1$s:  IF ( IndependentBranches )
15899
#. %2$s:  IF ( CAN_user_management ) 
15899
#. %2$s:  IF ( CAN_user_management ) 
15900
#: intranet-tmpl/prog/en/includes/header.inc:53
15900
#: intranet-tmpl/prog/en/includes/header.inc:53
15901
#, c-format
15901
#, c-format
Lines 19028-19034 msgstr "" Link Here
19028
19028
19029
#. %1$s:  IF ( AutoLocation ) 
19029
#. %1$s:  IF ( AutoLocation ) 
19030
#. %2$s:  ELSE 
19030
#. %2$s:  ELSE 
19031
#. %3$s:  IF ( IndependantBranches ) 
19031
#. %3$s:  IF ( IndependentBranches )
19032
#. %4$s:  ELSE 
19032
#. %4$s:  ELSE 
19033
#: intranet-tmpl/prog/en/modules/auth.tt:49
19033
#: intranet-tmpl/prog/en/modules/auth.tt:49
19034
#, c-format
19034
#, c-format
(-)a/misc/translator/po/vi-VN-pref.po (-3 / +3 lines)
Lines 994-1000 msgstr "" Link Here
994
# Administration > Login options
994
# Administration > Login options
995
# Administration > Login options
995
# Administration > Login options
996
# Administration > Login options
996
# Administration > Login options
997
msgid "admin.pref#IndependantBranches# Don't prevent"
997
msgid "admin.pref#IndependentBranches# Don't prevent"
998
msgstr ""
998
msgstr ""
999
999
1000
# Administration > Login options
1000
# Administration > Login options
Lines 1031-1037 msgstr "" Link Here
1031
# Administration > Login options
1031
# Administration > Login options
1032
# Administration > Login options
1032
# Administration > Login options
1033
# Administration > Login options
1033
# Administration > Login options
1034
msgid "admin.pref#IndependantBranches# Prevent"
1034
msgid "admin.pref#IndependentBranches# Prevent"
1035
msgstr ""
1035
msgstr ""
1036
1036
1037
# Administration > Login options
1037
# Administration > Login options
Lines 1068-1074 msgstr "" Link Here
1068
# Administration > Login options
1068
# Administration > Login options
1069
# Administration > Login options
1069
# Administration > Login options
1070
# Administration > Login options
1070
# Administration > Login options
1071
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
1071
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
1072
msgstr ""
1072
msgstr ""
1073
1073
1074
# Administration > Interface options
1074
# Administration > Interface options
(-)a/misc/translator/po/zh-Hans-CN-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 16518-16524 msgstr "" Link Here
16518
"%s %s &quot;%s&quot; 可以使用。 %s &quot;%s&quot; 禁止使用。 %s &quot;%"
16518
"%s %s &quot;%s&quot; 可以使用。 %s &quot;%s&quot; 禁止使用。 %s &quot;%"
16519
"s&quot; 既不允许也不禁止。 %s %s "
16519
"s&quot; 既不允许也不禁止。 %s %s "
16520
16520
16521
#. %1$s:  IF ( IndependantBranches )
16521
#. %1$s:  IF ( IndependentBranches )
16522
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue )
16522
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue )
16523
#: intranet-tmpl/prog/en/includes/header.inc:53
16523
#: intranet-tmpl/prog/en/includes/header.inc:53
16524
msgid "%s %s ("
16524
msgid "%s %s ("
Lines 19763-19769 msgstr "%s%s %s%s" Link Here
19763
19763
19764
#. %1$s:  IF ( AutoLocation )
19764
#. %1$s:  IF ( AutoLocation )
19765
#. %2$s:  ELSE 
19765
#. %2$s:  ELSE 
19766
#. %3$s:  IF ( IndependantBranches )
19766
#. %3$s:  IF ( IndependentBranches )
19767
#. %4$s:  ELSE 
19767
#. %4$s:  ELSE 
19768
#: intranet-tmpl/prog/en/modules/auth.tt:49
19768
#: intranet-tmpl/prog/en/modules/auth.tt:49
19769
msgid "%s%s %s%s "
19769
msgid "%s%s %s%s "
(-)a/misc/translator/po/zh-Hans-CN-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr "部份"
155
msgstr "部份"
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr "不禁止"
159
msgstr "不禁止"
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr "禁止"
163
msgstr "禁止"
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr "馆员(不包含超级馆员)修改其他图书馆的信息(预约、馆藏、读者等)。"
167
msgstr "馆员(不包含超级馆员)修改其他图书馆的信息(预约、馆藏、读者等)。"
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/misc/translator/po/zh-Hans-TW-i-staff-t-prog-v-3006000.po (-2 / +2 lines)
Lines 16519-16525 msgstr "" Link Here
16519
"%s %s &quot;%s&quot; 可以使用。 %s &quot;%s&quot; 禁止使用。 %s &quot;%"
16519
"%s %s &quot;%s&quot; 可以使用。 %s &quot;%s&quot; 禁止使用。 %s &quot;%"
16520
"s&quot; 既不允許也不禁止。 %s %s "
16520
"s&quot; 既不允許也不禁止。 %s %s "
16521
16521
16522
#. %1$s:  IF ( IndependantBranches )
16522
#. %1$s:  IF ( IndependentBranches )
16523
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue )
16523
#. %2$s:  IF ( CAN_user_management || CAN_user_editcatalogue_edit_catalogue )
16524
#: intranet-tmpl/prog/en/includes/header.inc:53
16524
#: intranet-tmpl/prog/en/includes/header.inc:53
16525
msgid "%s %s ("
16525
msgid "%s %s ("
Lines 19764-19770 msgstr "%s%s %s%s" Link Here
19764
19764
19765
#. %1$s:  IF ( AutoLocation )
19765
#. %1$s:  IF ( AutoLocation )
19766
#. %2$s:  ELSE 
19766
#. %2$s:  ELSE 
19767
#. %3$s:  IF ( IndependantBranches )
19767
#. %3$s:  IF ( IndependentBranches )
19768
#. %4$s:  ELSE 
19768
#. %4$s:  ELSE 
19769
#: intranet-tmpl/prog/en/modules/auth.tt:49
19769
#: intranet-tmpl/prog/en/modules/auth.tt:49
19770
msgid "%s%s %s%s "
19770
msgid "%s%s %s%s "
(-)a/misc/translator/po/zh-Hans-TW-pref.po (-3 / +3 lines)
Lines 155-169 msgid "admin.pref#DebugLevel# some" Link Here
155
msgstr "部份"
155
msgstr "部份"
156
156
157
# Administration > Login options
157
# Administration > Login options
158
msgid "admin.pref#IndependantBranches# Don't prevent"
158
msgid "admin.pref#IndependentBranches# Don't prevent"
159
msgstr "不禁止"
159
msgstr "不禁止"
160
160
161
# Administration > Login options
161
# Administration > Login options
162
msgid "admin.pref#IndependantBranches# Prevent"
162
msgid "admin.pref#IndependentBranches# Prevent"
163
msgstr "禁止"
163
msgstr "禁止"
164
164
165
# Administration > Login options
165
# Administration > Login options
166
msgid "admin.pref#IndependantBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
166
msgid "admin.pref#IndependentBranches# staff (but not superlibrarians) from modifying objects (holds, items, patrons, etc.) belonging to other libraries."
167
msgstr "館員(不含超級圖書館員)修改其他圖書館的物件(預約、館藏、讀者等)。"
167
msgstr "館員(不含超級圖書館員)修改其他圖書館的物件(預約、館藏、讀者等)。"
168
168
169
# Administration > Interface options
169
# Administration > Interface options
(-)a/reserve/request.pl (-1 / +1 lines)
Lines 426-432 foreach my $biblionumber (@biblionumbers) { Link Here
426
426
427
            # if independent branches is on we need to check if the person can reserve
427
            # if independent branches is on we need to check if the person can reserve
428
            # for branches they arent logged in to
428
            # for branches they arent logged in to
429
            if ( C4::Context->preference("IndependantBranches") ) {
429
            if ( C4::Context->preference("IndependentBranches") ) {
430
                if (! C4::Context->preference("canreservefromotherbranches")){
430
                if (! C4::Context->preference("canreservefromotherbranches")){
431
                    # cant reserve items so need to check if item homebranch and userenv branch match if not we cant reserve
431
                    # cant reserve items so need to check if item homebranch and userenv branch match if not we cant reserve
432
                    my $userenv = C4::Context->userenv;
432
                    my $userenv = C4::Context->userenv;
(-)a/serials/member-search.pl (-1 / +1 lines)
Lines 82-88 if (defined $member) { Link Here
82
82
83
my ($count,$results);
83
my ($count,$results);
84
84
85
if (C4::Context->preference("IndependantBranches")){
85
if (C4::Context->preference("IndependentBranches")){
86
   if (C4::Context->userenv && C4::Context->userenv->{flags} % 2 !=1 && C4::Context->userenv->{'branch'}){
86
   if (C4::Context->userenv && C4::Context->userenv->{flags} % 2 !=1 && C4::Context->userenv->{'branch'}){
87
        $$patron{branchcode}=C4::Context->userenv->{'branch'};
87
        $$patron{branchcode}=C4::Context->userenv->{'branch'};
88
   }
88
   }
(-)a/serials/subscription-add.pl (-1 / +1 lines)
Lines 120-126 if ($op eq 'modify' || $op eq 'dup' || $op eq 'modsubscription') { Link Here
120
    }
120
    }
121
}
121
}
122
122
123
my $onlymine=C4::Context->preference('IndependantBranches') &&
123
my $onlymine=C4::Context->preference('IndependentBranches') &&
124
             C4::Context->userenv &&
124
             C4::Context->userenv &&
125
             C4::Context->userenv->{flags} % 2 !=1 &&
125
             C4::Context->userenv->{flags} % 2 !=1 &&
126
             C4::Context->userenv->{branch};
126
             C4::Context->userenv->{branch};
(-)a/serials/subscription-detail.pl (-1 / +1 lines)
Lines 162-168 $template->param( Link Here
162
    routing => C4::Context->preference("RoutingSerials"),
162
    routing => C4::Context->preference("RoutingSerials"),
163
    totalissues => $totalissues,
163
    totalissues => $totalissues,
164
    hemisphere => $hemisphere,
164
    hemisphere => $hemisphere,
165
    cannotedit =>(C4::Context->preference('IndependantBranches') &&
165
    cannotedit =>(C4::Context->preference('IndependentBranches') &&
166
                C4::Context->userenv &&
166
                C4::Context->userenv &&
167
                C4::Context->userenv->{flags} % 2 !=1  &&
167
                C4::Context->userenv->{flags} % 2 !=1  &&
168
                C4::Context->userenv->{branch} && $subs->{branchcode} &&
168
                C4::Context->userenv->{branch} && $subs->{branchcode} &&
(-)a/suggestion/suggestion.pl (-1 / +1 lines)
Lines 276-282 if(defined($returnsuggested) and $returnsuggested ne "noone") Link Here
276
276
277
#branch display management
277
#branch display management
278
my $branchfilter = ($displayby ne "branchcode") ? $input->param('branchcode') : '';
278
my $branchfilter = ($displayby ne "branchcode") ? $input->param('branchcode') : '';
279
my $onlymine=C4::Context->preference('IndependantBranches') && 
279
my $onlymine=C4::Context->preference('IndependentBranches') &&
280
            C4::Context->userenv && 
280
            C4::Context->userenv && 
281
            C4::Context->userenv->{flags}!=1 && 
281
            C4::Context->userenv->{flags}!=1 && 
282
            C4::Context->userenv->{branch};
282
            C4::Context->userenv->{branch};
(-)a/t/db_dependent/Members.t (-1 / +1 lines)
Lines 29-35 my $PHONE = "555-12123"; Link Here
29
# XXX should be randomised and checked against the database
29
# XXX should be randomised and checked against the database
30
my $IMPOSSIBLE_CARDNUMBER = "XYZZZ999";
30
my $IMPOSSIBLE_CARDNUMBER = "XYZZZ999";
31
31
32
my $INDEPENDENT_BRANCHES_PREF = 'IndependantBranches';
32
my $INDEPENDENT_BRANCHES_PREF = 'IndependentBranches';
33
33
34
# XXX make a non-commit transaction and rollback rather than insert/delete
34
# XXX make a non-commit transaction and rollback rather than insert/delete
35
35
(-)a/t/db_dependent/lib/KohaTest/Acquisition.pm (-2 / +2 lines)
Lines 119-125 sub enable_independant_branches { Link Here
119
                         );
119
                         );
120
120
121
    # set a preference. There's surely a method for this, but I can't find it.
121
    # set a preference. There's surely a method for this, but I can't find it.
122
    my $retval = C4::Context->dbh->do( q(update systempreferences set value = '1' where variable = 'IndependantBranches') );
122
    my $retval = C4::Context->dbh->do( q(update systempreferences set value = '1' where variable = 'IndependentBranches') );
123
    ok( $retval, 'set the preference' );
123
    ok( $retval, 'set the preference' );
124
    
124
    
125
    ok( C4::Context->userenv, 'usernev' );
125
    ok( C4::Context->userenv, 'usernev' );
Lines 133-139 sub enable_independant_branches { Link Here
133
sub disable_independant_branches {
133
sub disable_independant_branches {
134
    my $self = shift;
134
    my $self = shift;
135
135
136
    my $retval = C4::Context->dbh->do( q(update systempreferences set value = '0' where variable = 'IndependantBranches') );
136
    my $retval = C4::Context->dbh->do( q(update systempreferences set value = '0' where variable = 'IndependentBranches') );
137
    ok( $retval, 'set the preference back' );
137
    ok( $retval, 'set the preference back' );
138
138
139
    
139
    
(-)a/t/db_dependent/lib/KohaTest/Acquisition/GetHistory.pm (-1 / +1 lines)
Lines 180-186 sub one_order : Test( 55 ) { Link Here
180
        is( $total_qtyreceived,  0, 'total_qtyreceived searched by from_date' );
180
        is( $total_qtyreceived,  0, 'total_qtyreceived searched by from_date' );
181
    }
181
    }
182
182
183
    # set up some things necessary to make GetHistory use the IndependantBranches
183
    # set up some things necessary to make GetHistory use the IndependentBranches
184
    $self->enable_independant_branches();    
184
    $self->enable_independant_branches();    
185
185
186
    # just search by title here, we need to search by something.
186
    # just search by title here, we need to search by something.
(-)a/t/db_dependent/lib/KohaTest/Acquisition/GetLateOrders.pm (-1 / +1 lines)
Lines 80-86 sub one_order : Test( 29 ) { Link Here
80
          or diag( Data::Dumper->Dump( [ \@orders ], [ 'orders' ] ) );
80
          or diag( Data::Dumper->Dump( [ \@orders ], [ 'orders' ] ) );
81
    }
81
    }
82
82
83
    # set up some things necessary to make GetLateOrders use the IndependantBranches
83
    # set up some things necessary to make GetLateOrders use the IndependentBranches
84
    $self->enable_independant_branches();    
84
    $self->enable_independant_branches();    
85
85
86
    {
86
    {
(-)a/tools/batchMod.pl (-2 / +2 lines)
Lines 318-324 foreach my $tag (sort keys %{$tagslib}) { Link Here
318
	    $value =~ s/DD/$day/g;
318
	    $value =~ s/DD/$day/g;
319
	}
319
	}
320
	$subfield_data{visibility} = "display:none;" if (($tagslib->{$tag}->{$subfield}->{hidden} > 4) || ($tagslib->{$tag}->{$subfield}->{hidden} < -4));
320
	$subfield_data{visibility} = "display:none;" if (($tagslib->{$tag}->{$subfield}->{hidden} > 4) || ($tagslib->{$tag}->{$subfield}->{hidden} < -4));
321
	# testing branch value if IndependantBranches.
321
    # testing branch value if IndependentBranches.
322
322
323
	my $attributes_no_value = qq(tabindex="1" id="$subfield_data{id}" name="field_value" class="input_marceditor" size="67" maxlength="255" );
323
	my $attributes_no_value = qq(tabindex="1" id="$subfield_data{id}" name="field_value" class="input_marceditor" size="67" maxlength="255" );
324
	my $attributes          = qq($attributes_no_value value="$value" );
324
	my $attributes          = qq($attributes_no_value value="$value" );
Lines 492-498 sub BuildItemsData{ Link Here
492
			foreach my $field (grep {$_->tag() eq $itemtagfield} $itemmarc->fields()) {
492
			foreach my $field (grep {$_->tag() eq $itemtagfield} $itemmarc->fields()) {
493
				# loop through each subfield
493
				# loop through each subfield
494
				my $itembranchcode=$field->subfield($branchtagsubfield);
494
				my $itembranchcode=$field->subfield($branchtagsubfield);
495
				if ($itembranchcode && C4::Context->preference("IndependantBranches")) {
495
                if ($itembranchcode && C4::Context->preference("IndependentBranches")) {
496
						#verifying rights
496
						#verifying rights
497
						my $userenv = C4::Context->userenv();
497
						my $userenv = C4::Context->userenv();
498
						unless (($userenv->{'flags'} == 1) or (($userenv->{'branch'} eq $itembranchcode))){
498
						unless (($userenv->{'flags'} == 1) or (($userenv->{'branch'} eq $itembranchcode))){
(-)a/tools/export.pl (-2 / +2 lines)
Lines 118-130 my ( $template, $loggedinuser, $cookie, $flags ) = get_template_and_user( Link Here
118
);
118
);
119
119
120
my $limit_ind_branch =
120
my $limit_ind_branch =
121
  (      C4::Context->preference('IndependantBranches')
121
  (      C4::Context->preference('IndependentBranches')
122
      && C4::Context->userenv
122
      && C4::Context->userenv
123
      && !( C4::Context->userenv->{flags} & 1 )
123
      && !( C4::Context->userenv->{flags} & 1 )
124
      && C4::Context->userenv->{branch} ) ? 1 : 0;
124
      && C4::Context->userenv->{branch} ) ? 1 : 0;
125
125
126
my $branch = $query->param("branch") || '';
126
my $branch = $query->param("branch") || '';
127
if (   C4::Context->preference("IndependantBranches")
127
if (   C4::Context->preference("IndependentBranches")
128
    && C4::Context->userenv
128
    && C4::Context->userenv
129
    && !( C4::Context->userenv->{flags} & 1 ) )
129
    && !( C4::Context->userenv->{flags} & 1 ) )
130
{
130
{
(-)a/tools/holidays.pl (-1 / +1 lines)
Lines 57-63 $keydate =~ s/-/\//g; Link Here
57
57
58
my $branch= $input->param('branch') || C4::Context->userenv->{'branch'};
58
my $branch= $input->param('branch') || C4::Context->userenv->{'branch'};
59
# Set all the branches.
59
# Set all the branches.
60
my $onlymine=(C4::Context->preference('IndependantBranches') &&
60
my $onlymine=(C4::Context->preference('IndependentBranches') &&
61
              C4::Context->userenv &&
61
              C4::Context->userenv &&
62
              C4::Context->userenv->{flags} % 2 !=1  &&
62
              C4::Context->userenv->{flags} % 2 !=1  &&
63
              C4::Context->userenv->{branch}?1:0);
63
              C4::Context->userenv->{branch}?1:0);
(-)a/tools/letter.pl (-2 / +1 lines)
Lines 106-112 our ( $template, $borrowernumber, $cookie, $staffflags ) = get_template_and_user Link Here
106
    }
106
    }
107
);
107
);
108
108
109
our $my_branch = C4::Context->preference("IndependantBranches") && !$staffflags->{'superlibrarian'}
109
our $my_branch = C4::Context->preference("IndependentBranches") && !$staffflags->{'superlibrarian'}
110
  ?  C4::Context->userenv()->{'branch'}
110
  ?  C4::Context->userenv()->{'branch'}
111
  : undef;
111
  : undef;
112
# we show only the TMPL_VAR names $op
112
# we show only the TMPL_VAR names $op
113
- 

Return to bug 10080