[Rt-commit] rt branch, 4.2/concise-lifecycle-actions, created. rt-4.2.5-89-gf211b5a

Alex Vandiver alexmv at bestpractical.com
Tue Jul 1 14:45:32 EDT 2014


The branch, 4.2/concise-lifecycle-actions has been created
        at  f211b5a936e2737f5f109db8082c4a15bb09dcee (commit)

- Log -----------------------------------------------------------------
commit a3c87bd1da130caed3cc81380974938326976218
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Tue Mar 25 11:44:15 2014 -0400

    Add a new loc form, loc{key}, which localizes the value of that key

diff --git a/devel/tools/extract-message-catalog b/devel/tools/extract-message-catalog
index e86b855..c409ad0 100755
--- a/devel/tools/extract-message-catalog
+++ b/devel/tools/extract-message-catalog
@@ -285,10 +285,26 @@ sub extract_strings_from_code {
         push @{ $FILECAT{$val} }, [ $filename, $line, '', $interp_val ];
     }
 
+    # Specific key  foo => "...", #loc{foo}
+    $line = 1;
+    pos($_) = 0;
+    while (m/\G(.*?(\w+|$re_delim)\s*=>\s*($re_delim)(?-s:.*?)\#$re_space_wo_nl*loc\{\2\}$re_space_wo_nl*)$/smgo) {
+        my ( $all, $key, $val ) = ( $1, $2, $10 );
+        $line += ( $all =~ tr/\n/\n/ );
+        $seen{$line}++;
+        unless ( defined $key && defined $val ) {
+            warn "Couldn't process loc_pair at $filename:$line:\n  key«$key»\n  val«$val»\n";
+            next;
+        }
+        $val = substr($val, 1, -1);    # dequote always quoted string
+        $val  =~ s/\\(['"])/$1/g;
+        push @{ $FILECAT{$val} }, [ $filename, $line, '' ];
+    }
+
     # Check for ones we missed
     $line = 1;
     pos($_) = 0;
-    while (m/\G(.*? \# $re_space_wo_nl* (loc (_\w+|\(\))?) $re_space_wo_nl* $)/smgox) {
+    while (m/\G(.*? \# $re_space_wo_nl* (loc (_\w+|\(\)|{$re_delim})?) $re_space_wo_nl* $)/smgox) {
         my ($all, $loc_type) = ($1, $2);
         $line += ( $all =~ tr/\n/\n/ );
         next if $seen{$line};
diff --git a/docs/hacking.pod b/docs/hacking.pod
index a3280c9..23ce51e 100644
--- a/docs/hacking.pod
+++ b/docs/hacking.pod
@@ -153,8 +153,14 @@ C<#loc_left_pair> is used for declaring that the I<key> of a
 particular C<< key => value >> pair is translatable. This is of
 very limited usefulness.
 
-C<#loc_right_pair> does NOT exist. C<#loc> works in such cases since
-its parser does not extend beyond the string at the end of a line.
+C<#loc_right_pair> does NOT exist. C<#loc> works in such cases since its
+parser does not extend beyond the string at the end of a line.  However,
+if the string is I<not> at the end of the line, C<#loc{word}> declares
+that the value associated with the key I<word> (earlier on the same
+line) is to be loc'd.  This is useful for inline hashes:
+
+    # Note the string "baz" is to be loc'd
+    foo => { bar => "baz", troz => "zort" },  # loc{bar}
 
 =head1 Development tips
 

commit f211b5a936e2737f5f109db8082c4a15bb09dcee
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Tue Mar 25 11:44:37 2014 -0400

    Use the new loc{key} form to compress the default lifecycles

diff --git a/etc/RT_Config.pm.in b/etc/RT_Config.pm.in
index 9740837..1cbc5bf 100755
--- a/etc/RT_Config.pm.in
+++ b/etc/RT_Config.pm.in
@@ -2782,49 +2782,17 @@ Set(%Lifecycles,
             '* -> *'        => 'ModifyTicket',
         },
         actions => [
-            'new -> open'      => {
-                label  => 'Open It', # loc
-                update => 'Respond',
-            },
-            'new -> resolved'  => {
-                label  => 'Resolve', # loc
-                update => 'Comment',
-            },
-            'new -> rejected'  => {
-                label  => 'Reject', # loc
-                update => 'Respond',
-            },
-            'new -> deleted'   => {
-                label  => 'Delete', # loc
-            },
-
-            'open -> stalled'  => {
-                label  => 'Stall', # loc
-                update => 'Comment',
-            },
-            'open -> resolved' => {
-                label  => 'Resolve', # loc
-                update => 'Comment',
-            },
-            'open -> rejected' => {
-                label  => 'Reject', # loc
-                update => 'Respond',
-            },
-
-            'stalled -> open'  => {
-                label  => 'Open It', # loc
-            },
-            'resolved -> open' => {
-                label  => 'Re-open', # loc
-                update => 'Comment',
-            },
-            'rejected -> open' => {
-                label  => 'Re-open', # loc
-                update => 'Comment',
-            },
-            'deleted -> open'  => {
-                label  => 'Undelete', # loc
-            },
+            'new -> open'      => { label  => 'Open It', update => 'Respond' }, # loc{label}
+            'new -> resolved'  => { label  => 'Resolve', update => 'Comment' }, # loc{label}
+            'new -> rejected'  => { label  => 'Reject',  update => 'Respond' }, # loc{label}
+            'new -> deleted'   => { label  => 'Delete',                      }, # loc{label}
+            'open -> stalled'  => { label  => 'Stall',   update => 'Comment' }, # loc{label}
+            'open -> resolved' => { label  => 'Resolve', update => 'Comment' }, # loc{label}
+            'open -> rejected' => { label  => 'Reject',  update => 'Respond' }, # loc{label}
+            'stalled -> open'  => { label  => 'Open It',                     }, # loc{label}
+            'resolved -> open' => { label  => 'Re-open', update => 'Comment' }, # loc{label}
+            'rejected -> open' => { label  => 'Re-open', update => 'Comment' }, # loc{label}
+            'deleted -> open'  => { label  => 'Undelete',                    }, # loc{label}
         ],
     },
 # don't change lifecyle of the approvals, they are not capable to deal with
@@ -2858,49 +2826,17 @@ Set(%Lifecycles,
             '* -> *'        => 'ModifyTicket',
         },
         actions => [
-            'new -> open'      => {
-                label  => 'Open It', # loc
-                update => 'Respond',
-            },
-            'new -> resolved'  => {
-                label  => 'Resolve', # loc
-                update => 'Comment',
-            },
-            'new -> rejected'  => {
-                label  => 'Reject', # loc
-                update => 'Respond',
-            },
-            'new -> deleted'   => {
-                label  => 'Delete', # loc
-            },
-
-            'open -> stalled'  => {
-                label  => 'Stall', # loc
-                update => 'Comment',
-            },
-            'open -> resolved' => {
-                label  => 'Resolve', # loc
-                update => 'Comment',
-            },
-            'open -> rejected' => {
-                label  => 'Reject', # loc
-                update => 'Respond',
-            },
-
-            'stalled -> open'  => {
-                label  => 'Open It', # loc
-            },
-            'resolved -> open' => {
-                label  => 'Re-open', # loc
-                update => 'Comment',
-            },
-            'rejected -> open' => {
-                label  => 'Re-open', # loc
-                update => 'Comment',
-            },
-            'deleted -> open'  => {
-                label  => 'Undelete', # loc
-            },
+            'new -> open'      => { label  => 'Open It', update => 'Respond' }, # loc{label}
+            'new -> resolved'  => { label  => 'Resolve', update => 'Comment' }, # loc{label}
+            'new -> rejected'  => { label  => 'Reject',  update => 'Respond' }, # loc{label}
+            'new -> deleted'   => { label  => 'Delete',                      }, # loc{label}
+            'open -> stalled'  => { label  => 'Stall',   update => 'Comment' }, # loc{label}
+            'open -> resolved' => { label  => 'Resolve', update => 'Comment' }, # loc{label}
+            'open -> rejected' => { label  => 'Reject',  update => 'Respond' }, # loc{label}
+            'stalled -> open'  => { label  => 'Open It',                     }, # loc{label}
+            'resolved -> open' => { label  => 'Re-open', update => 'Comment' }, # loc{label}
+            'rejected -> open' => { label  => 'Re-open', update => 'Comment' }, # loc{label}
+            'deleted -> open'  => { label  => 'Undelete',                    }, # loc{label}
         ],
     },
 );
diff --git a/share/po/ar.po b/share/po/ar.po
index f470787..4c7ec9e 100644
--- a/share/po/ar.po
+++ b/share/po/ar.po
@@ -2560,7 +2560,7 @@ msgstr ""
 msgid "DefaultFormat"
 msgstr ""
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "احذف"
 
@@ -5661,7 +5661,7 @@ msgstr ""
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr ""
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr ""
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "ارفض"
 
@@ -6480,7 +6480,7 @@ msgstr "تمت إعادة فتح التنبيه '%1'"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr ""
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "حلّها"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr ""
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr ""
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr "علّقها"
 
@@ -7575,7 +7575,7 @@ msgstr ""
 msgid "Suspended"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr ""
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8599,7 +8599,7 @@ msgstr "يُعرِّفها المستخدم"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr ""
 
@@ -8666,7 +8666,7 @@ msgstr "أسم المستخدم"
 msgid "Username format"
 msgstr ""
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "المستخدمون"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr "فهرس"
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/bg.po b/share/po/bg.po
index 1da5c63..d203e27 100644
--- a/share/po/bg.po
+++ b/share/po/bg.po
@@ -2560,7 +2560,7 @@ msgstr "По подразбиране: %1/%2 променен от %3 на %4"
 msgid "DefaultFormat"
 msgstr "ФорматПоПодразбиране"
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Изтриване"
 
@@ -5661,7 +5661,7 @@ msgstr "Покажи само персонализирани полета за:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr ""
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr ""
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr ""
 
@@ -6480,7 +6480,7 @@ msgstr "Напомняне '%1' отново отворено"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Местожителство"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Разрешаване"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Роли"
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Етап"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr ""
 
@@ -7575,7 +7575,7 @@ msgstr "неделя"
 msgid "Suspended"
 msgstr "Прекъснат"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr ""
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8599,7 +8599,7 @@ msgstr "Потребителско зададено"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr "Потребителят поиска непознат тип на обновлението за персонализирано поле %1 за %2 обект #%3"
 
@@ -8666,7 +8666,7 @@ msgstr "Потребителско име"
 msgid "Username format"
 msgstr "Формат на потребителското име"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Потребители"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr ""
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/ca.po b/share/po/ca.po
index bcfb42c..249c139 100644
--- a/share/po/ca.po
+++ b/share/po/ca.po
@@ -2560,7 +2560,7 @@ msgstr "Per defecte: %1/%2 ha canviat de %3 a %4"
 msgid "DefaultFormat"
 msgstr ""
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Esborra"
 
@@ -5661,7 +5661,7 @@ msgstr "Mostra només els camps personalitzats per a:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr "Obre'l"
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr "La opció RTDireccionRegexp de la configuració no coincideix amb %1"
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr "Tornar a obrir"
 
@@ -6451,7 +6451,7 @@ msgstr "RefrescaPaginaInici"
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "Rebutja"
 
@@ -6480,7 +6480,7 @@ msgstr "S'ha reobert el recordatori '%1'"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Residència"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Resol"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr ""
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Fase"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr "Casella"
 
@@ -7575,7 +7575,7 @@ msgstr "Diumenge"
 msgid "Suspended"
 msgstr "Suspesa"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr "Desmarca les caselles per a deshabilitar les notificacions per als destinataris llistats <b>només per a aquesta transacció</b>; el silenciament persistent s'administra a la pàgina <a href=\"%1\">Persones</a>."
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr "Desfès la supressió"
 
@@ -8599,7 +8599,7 @@ msgstr "Definit per l'usuari"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr "L'usuari ha sol·licitat un tipus d'actualització desconeguda per al camp personalitzat %1 per a l'objecte %2 #%3"
 
@@ -8666,7 +8666,7 @@ msgstr "Nom d'usuari"
 msgid "Username format"
 msgstr "Format pel nom d'usuari"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Usuaris"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr "índex"
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/cs.po b/share/po/cs.po
index e920e3e..8b1b2b6 100644
--- a/share/po/cs.po
+++ b/share/po/cs.po
@@ -2560,7 +2560,7 @@ msgstr "Implicitně: %1/%2 změneno z %3 na %4"
 msgid "DefaultFormat"
 msgstr ""
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Smazat"
 
@@ -5661,7 +5661,7 @@ msgstr "Zobrazit jen uživatelské položky pro:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr "Otevřít"
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr "Znovu otevřít"
 
@@ -6451,7 +6451,7 @@ msgstr "Obnova domácí stránky"
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "Zamítnout"
 
@@ -6480,7 +6480,7 @@ msgstr "Upomínka '%1' znovuotevřena"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Bydliště"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Vyřešit"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Role"
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Fáze"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr "Odložit"
 
@@ -7575,7 +7575,7 @@ msgstr "Neděle"
 msgid "Suspended"
 msgstr "Pozastaveno"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr "Pokud nechcete poslat tuto konkrétní zprávu některým stálým příjemcům, odškrtněte je v příslušných políčkách. Trvalé změny příjemců se nastavují na záložce <a href=\"%1\">Uživatelé</a>."
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr "Vrátit smazání"
 
@@ -8599,7 +8599,7 @@ msgstr "Uživatelem definované"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr ""
 
@@ -8666,7 +8666,7 @@ msgstr "Uživatelské jméno"
 msgid "Username format"
 msgstr "Formát uživatelského jména"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Uživatelé"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr ""
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/da.po b/share/po/da.po
index a8a2a60..731d574 100644
--- a/share/po/da.po
+++ b/share/po/da.po
@@ -2560,7 +2560,7 @@ msgstr "Standard: %1/%2 ændret fra %3 til %4"
 msgid "DefaultFormat"
 msgstr "StandardFormat"
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Slet"
 
@@ -5661,7 +5661,7 @@ msgstr "Vis kun ekstrafelter for:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr "Åbn den"
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr "RTAddressRegexp  i konfigurationen matcher ikke %1"
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr "Genåben"
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "Afvis"
 
@@ -6480,7 +6480,7 @@ msgstr "Påmindelse '%1' genåbnet"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Hjemme"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Løs"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Roller"
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Trin"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr "Sæt i stå"
 
@@ -7575,7 +7575,7 @@ msgstr "Søndag"
 msgid "Suspended"
 msgstr "Suspenderet"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr "Fjern markering fra bokse for at deaktivere påmindelser til de viste modtagere <b>for denne transaktion alene</b>; vedvarende tilbageholdelse håndteres på <a href=\"%1\">siden med Personer</a>."
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr "Fortryd slet"
 
@@ -8599,7 +8599,7 @@ msgstr "Brugerdefineret"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr "Bruger bad om en ukendt opdateringstype for ekstrafelt %1 til %2 objekt #%3"
 
@@ -8666,7 +8666,7 @@ msgstr "Brugernavn"
 msgid "Username format"
 msgstr "Format på brugernavn"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Brugere"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr "indeks"
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/de.po b/share/po/de.po
index d333737..737650e 100644
--- a/share/po/de.po
+++ b/share/po/de.po
@@ -2560,7 +2560,7 @@ msgstr "Standardwert: %1/%2 von \"%3\" auf \"%4\" geändert."
 msgid "DefaultFormat"
 msgstr "Standard-Format"
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Löschen"
 
@@ -5662,7 +5662,7 @@ msgstr "Nur Benutzerdefinierte Felder anzeigen für:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr "Öffnen"
 
@@ -6311,7 +6311,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr "RTAddressRegexp in den Einstellungen entspricht nicht %1"
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr "Erneut öffnen"
 
@@ -6452,7 +6452,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "Abweisen"
 
@@ -6481,7 +6481,7 @@ msgstr "Erinnerung '%1' wieder geöffnet"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6596,7 +6596,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Zuhause"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Erledigen"
 
@@ -6684,7 +6684,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Rollen"
 
@@ -7376,7 +7376,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Phase"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr "Zurückstellen"
 
@@ -7576,7 +7576,7 @@ msgstr "Sonntag"
 msgid "Suspended"
 msgstr "Eingestellt"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8334,7 +8334,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr "Abwählen um Benachrichtigung der aufgelisteten Empfänger <b>nur für diese Transaktion</b> zu deaktivieren. Dauerhaftes deaktivieren kann auf der <a href=\"%1\">Personen Seite</a> verwaltet werden."
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr "Wiederherstellen"
 
@@ -8600,7 +8600,7 @@ msgstr "Benutzerdefiniert"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8621,7 +8621,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr "Benutzer hat einen unbekannten Aktualisierungstyp für das benutzerdefinierte Feld %1 bei %2-Objekt #%3 verlangt"
 
@@ -8667,7 +8667,7 @@ msgstr "Benutzername"
 msgid "Username format"
 msgstr "Format der Benutzernamen"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Benutzer"
 
@@ -9365,7 +9365,7 @@ msgid "index"
 msgstr "Index"
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/el.po b/share/po/el.po
index 4d3c57e..1aa8dca 100644
--- a/share/po/el.po
+++ b/share/po/el.po
@@ -2560,7 +2560,7 @@ msgstr "Προκαθορισμένο: %1/%2 αλλαγή από %3 σε %4"
 msgid "DefaultFormat"
 msgstr ""
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Διαγραφή"
 
@@ -5663,7 +5663,7 @@ msgstr "Προβολή μόνο των ειδικών πεδίων για:"
 msgid "Open Inactive Tickets"
 msgstr "Ανοικτά Απενεργοποιημένα Αιτήματα"
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr "Άνοιξε το"
 
@@ -6312,7 +6312,7 @@ msgstr "Η καταγραφή της ρύθμισης του RT συνοψίζε
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr "Η επιλογή RTAddressRegexp στις ρυθμίσεις δεν ταυτίζεται με %1"
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr "Άνοιγμα ξανά"
 
@@ -6453,7 +6453,7 @@ msgstr "Ανανέωση αρχικής σελίδας"
 msgid "Refused to add link which would create a circular relationship"
 msgstr "Αρνηθήκατε να προσθέσετε σύνδεσμο που θα δημιουργούσε μια κυκλική σχέση"
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "Απόρριψη"
 
@@ -6482,7 +6482,7 @@ msgstr "Επαναενεργοποίηση υπενθύμισης '%1'"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr "Υπενθύμιση '%1': %2"
 
@@ -6597,7 +6597,7 @@ msgstr "Επαναφορά στο αρχικό θέμα RT"
 msgid "Residence"
 msgstr "Κατοικία"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Επίλυση"
 
@@ -6685,7 +6685,7 @@ msgstr "Ο ρόλος της ομάδας '%1' δε βρέθηκε"
 msgid "Role group exists already"
 msgstr "Ο ρόλος της ομάδας υπάρχει ήδη"
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Ρόλοι"
 
@@ -7379,7 +7379,7 @@ msgstr "Τα ίχνη σωρού δε καταγράφονται."
 msgid "Stage"
 msgstr "Στάδιο"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr "Αναμονή"
 
@@ -7579,7 +7579,7 @@ msgstr "Κυριακή"
 msgid "Suspended"
 msgstr "Παγωμένο"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr "Σύστημα"
 
@@ -8337,7 +8337,7 @@ msgstr "Μη εξουσιοδοτημένος"
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr "Αποεπιλέξτε τα πλαίσια για απενεργοποίηση των ειδοποιήσεων στους εγγεγραμμένους παραλήπτες <b>μόνο για αυτή την συναλλαγή</b>. Για μονιμότερη αποσιωποίηση των ειδοποιήσεων μπορείτε να επισκεφθείτε την <a href=\"%1\">Σελίδα χρηστών</a>."
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr "Αποδιαγραφή"
 
@@ -8603,7 +8603,7 @@ msgstr "Ορισμένο από χρήστη"
 msgid "User Defined conditions and results"
 msgstr "Από το χρήστη ορίζονται οι προϋποθέσεις και τα αποτελέσματα"
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr "Ομάδες Χρηστών"
 
@@ -8624,7 +8624,7 @@ msgid "User Summary"
 msgstr "Σύνοψη χρήστη"
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr "Ο χρήστης ζήτησε αγνώστου τύπου ενημέρωση για το ειδικό πεδίο %1 για το %2 αντικείμενο #%3"
 
@@ -8670,7 +8670,7 @@ msgstr "Όνομα Χρήστη"
 msgid "Username format"
 msgstr "Μορφή Ονόματος Χρήστη"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Χρήστες"
 
@@ -9368,7 +9368,7 @@ msgid "index"
 msgstr "ευρετήριο"
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr "μη έγκυρη ημερομηνία λήξης: %1"
 
diff --git a/share/po/es.po b/share/po/es.po
index 1c2dad2..728c334 100644
--- a/share/po/es.po
+++ b/share/po/es.po
@@ -2560,7 +2560,7 @@ msgstr "Por omisión: %1/%2 ha cambiado de %3 a %4"
 msgid "DefaultFormat"
 msgstr "FormatoPredefinido"
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Borrar"
 
@@ -5661,7 +5661,7 @@ msgstr "Solo mostrar campos personalizados para:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr "Abrirlo"
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr "La opción RTDireccionRegexp de la configuración no coincide con %1"
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr "Reabrir"
 
@@ -6451,7 +6451,7 @@ msgstr "RecargarPaginaDeInicio"
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "Rechazar"
 
@@ -6480,7 +6480,7 @@ msgstr "Recordatorio '%1' reabierto"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Residencia"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Resolver"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr ""
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Fase"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr "Casilla"
 
@@ -7575,7 +7575,7 @@ msgstr "Domingo"
 msgid "Suspended"
 msgstr "Suspendido"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr "Sistema"
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr "Desactive las casillas para deshabilitar notificaciones a los destinatarios listados <b>solo para esta transacción</b>; el silenciamiento persistente es administrado en la página <a href=\"%1\">Personas</a>."
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr "Recuperar"
 
@@ -8599,7 +8599,7 @@ msgstr "Definido por el usuario"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr "El usuario solicitó un tipo de actualización desconocida para el campo personalizado %1 para %2 objeto #%3"
 
@@ -8666,7 +8666,7 @@ msgstr "Nombre de usuario"
 msgid "Username format"
 msgstr "Formato para el nombre del usuario"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Usuarios"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr "índice"
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/et.po b/share/po/et.po
index 95f2076..d70d4b1 100644
--- a/share/po/et.po
+++ b/share/po/et.po
@@ -2560,7 +2560,7 @@ msgstr "Vaikimisi: %1/%2 muudetud %3-st %4-ks"
 msgid "DefaultFormat"
 msgstr "VaikeFormaat"
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Kustuta"
 
@@ -5661,7 +5661,7 @@ msgstr "Näita kohandatud välju:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr ""
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr ""
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr ""
 
@@ -6480,7 +6480,7 @@ msgstr "Meeldetuletus '%1' avati uuesti"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Elukoht"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Lahenda"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Rollid"
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr ""
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr ""
 
@@ -7575,7 +7575,7 @@ msgstr ""
 msgid "Suspended"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr ""
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8599,7 +8599,7 @@ msgstr "Kasutaja määratud"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr ""
 
@@ -8666,7 +8666,7 @@ msgstr "Kasutajanimi"
 msgid "Username format"
 msgstr "Kasutajanime formaat"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Kasutajad"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr "sisukord"
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/eu.po b/share/po/eu.po
index 35a8187..aa690dc 100644
--- a/share/po/eu.po
+++ b/share/po/eu.po
@@ -2560,7 +2560,7 @@ msgstr "Lehenetsia: %1/%2 aldatuta %3tik %4ra"
 msgid "DefaultFormat"
 msgstr ""
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Ezabatu"
 
@@ -5661,7 +5661,7 @@ msgstr ""
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr "Ireki"
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr "Berriz ireki"
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "Baztertu"
 
@@ -6480,7 +6480,7 @@ msgstr "'%1' oroigarria berrirekita"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Bizilekua"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Amaitu"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr ""
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr ""
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr "Izoztu"
 
@@ -7575,7 +7575,7 @@ msgstr "Igandea"
 msgid "Suspended"
 msgstr "Geldiarazi"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr ""
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr "Desezabatu"
 
@@ -8599,7 +8599,7 @@ msgstr ""
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr ""
 
@@ -8666,7 +8666,7 @@ msgstr "Erabiltzaile-izena"
 msgid "Username format"
 msgstr "Erabiltzaile-izenaren formatua"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Erabiltzaileak"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr ""
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/fa.po b/share/po/fa.po
index e380bc7..9b2e4a8 100644
--- a/share/po/fa.po
+++ b/share/po/fa.po
@@ -2560,7 +2560,7 @@ msgstr "پیش فرض: %1/%2 تغییر یافته از %3 به %4"
 msgid "DefaultFormat"
 msgstr "قالب پیشفرض"
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "حذف"
 
@@ -5661,7 +5661,7 @@ msgstr "نشان بده فیلدهای خاص را تنها برای:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr "باز کردن آن"
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr "دوباره باز کن"
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "رد کردن"
 
@@ -6480,7 +6480,7 @@ msgstr "یادآوری '%1' دوباره باز شد"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "محل اقامت"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "حل کردن"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr ""
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr "مرحله"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr "معطل"
 
@@ -7575,7 +7575,7 @@ msgstr "یکشنبه"
 msgid "Suspended"
 msgstr "معوق"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr "انتخاب ها را برای عدم اطلاع رسانی به لسیت گیرندگان <b> تنها برای این تبادل</b> غیر فعال کنید؛ اطلاع رسانی دائمی را می توانید از <a href=\"%1\">صفحه افراد</a> تنظیم نمایید."
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr "بازیابی"
 
@@ -8599,7 +8599,7 @@ msgstr "تعریف شده توسط کاربر"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr ""
 
@@ -8666,7 +8666,7 @@ msgstr "نام کاربری"
 msgid "Username format"
 msgstr "قالب نام کاربری"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "کاربران"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr "شاخص"
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/fi.po b/share/po/fi.po
index c99fdae..bdf373c 100644
--- a/share/po/fi.po
+++ b/share/po/fi.po
@@ -2560,7 +2560,7 @@ msgstr "Oletus: %1/%2 muutettu arvosta %3 arvoon %4"
 msgid "DefaultFormat"
 msgstr "Oletusmuoto"
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Poista"
 
@@ -5661,7 +5661,7 @@ msgstr ""
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr ""
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr "Avaa uudelleen"
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "Hylkää"
 
@@ -6480,7 +6480,7 @@ msgstr "Muistutus '%1' avattu uudelleen"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Koti"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Päätä"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Roolit"
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Vaihe"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr ""
 
@@ -7575,7 +7575,7 @@ msgstr "Sunnuntai"
 msgid "Suspended"
 msgstr "Keskeytetty"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr "Järjestelmä"
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr ""
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8599,7 +8599,7 @@ msgstr ""
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr ""
 
@@ -8666,7 +8666,7 @@ msgstr "Käyttäjätunnus"
 msgid "Username format"
 msgstr "Käyttäjänimen esitystapa"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Käyttäjät"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr ""
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/fr.po b/share/po/fr.po
index 8aea078..031d163 100644
--- a/share/po/fr.po
+++ b/share/po/fr.po
@@ -2560,7 +2560,7 @@ msgstr "Valeur par défaut: %1/%2 changée de %3 en %4"
 msgid "DefaultFormat"
 msgstr ""
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Supprimer"
 
@@ -5661,7 +5661,7 @@ msgstr "Ne montrer que les champs personnalisés pour :"
 msgid "Open Inactive Tickets"
 msgstr "Ouvrir un ticket inactif"
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr "Ouvrir"
 
@@ -6312,7 +6312,7 @@ msgstr "La configuration des journaux RT est la suivante:"
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr "L'option RTAddressRegexp dans la configuration RT ne correspond pas à %1"
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr "Ré-ouvrir"
 
@@ -6453,7 +6453,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr "Création de la relation refusée car elle entraînerait une boucle"
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "Rejeter"
 
@@ -6482,7 +6482,7 @@ msgstr "Rappel '%1' ré-ouvert"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr "Rappel '%1': %2"
 
@@ -6597,7 +6597,7 @@ msgstr "Remettre le thème RT par défaut"
 msgid "Residence"
 msgstr "Domicile"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Résoudre"
 
@@ -6685,7 +6685,7 @@ msgstr "Rôle '%1' non trouvé"
 msgid "Role group exists already"
 msgstr "Le rôle existe déjà"
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr ""
 
@@ -7377,7 +7377,7 @@ msgstr "Les \"stack traces\" ne sont pas journalisés."
 msgid "Stage"
 msgstr "Étape"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr "Voler"
 
@@ -7577,7 +7577,7 @@ msgstr "Dimanche"
 msgid "Suspended"
 msgstr "Suspendu"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr "Système"
 
@@ -8335,7 +8335,7 @@ msgstr "Interdit"
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr "Décocher les cases pour désactiver les notifications aux destinataires suivant <b>pour cette transaction seulement</b> ; les désactivations permanentes sont gérés sur la <a href=\"%1\">page des utilisateurs</a>."
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr "Restaurer"
 
@@ -8601,7 +8601,7 @@ msgstr "Défini par l'utilisateur"
 msgid "User Defined conditions and results"
 msgstr "Conditions et actions définies par l'utilisateur"
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr "Groupes utilisateur"
 
@@ -8622,7 +8622,7 @@ msgid "User Summary"
 msgstr "Détail"
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr "L'utilisateur a demandé un type de mise à jour non connu pour le champ personnalisé %1 de l'objet %2 n°%3"
 
@@ -8668,7 +8668,7 @@ msgstr "Nom d'utilisateur"
 msgid "Username format"
 msgstr "Format de nom d'utilisateur"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Utilisateurs"
 
@@ -9368,7 +9368,7 @@ msgid "index"
 msgstr "indexe"
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr "date d'échéance invalide: %1"
 
diff --git a/share/po/hr.po b/share/po/hr.po
index 2c870b8..65472ca 100644
--- a/share/po/hr.po
+++ b/share/po/hr.po
@@ -2560,7 +2560,7 @@ msgstr "Standard: %1/%2 iz \"%3\" u \"%4\" promijenjen."
 msgid "DefaultFormat"
 msgstr "Standardni format"
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Obriši"
 
@@ -5661,7 +5661,7 @@ msgstr "Prikaži samo vlastita polja za:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr "Otvori"
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr "Postavka RTAddressRegexp iz konfiguracije ne odgovara %1"
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr "Ponovno otvaranje"
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "Odbij"
 
@@ -6480,7 +6480,7 @@ msgstr "Podsjetnik '%1' ponovo otvoren"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Kuća"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Riješi"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Uloge"
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Stadij"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr "Zadržano"
 
@@ -7575,7 +7575,7 @@ msgstr "Nedjelja"
 msgid "Suspended"
 msgstr "Isključeno"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr "Sustav"
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr "Uklanjanjam oznake isključuju se obavijesti za dotične primatelje <b>samo za ovu transakciju</b>; trajno isključivanje obavijesti može se podesiti na stranici <a href=\"%1\">Osobe</a>."
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr "Vraćanje obrisanog"
 
@@ -8599,7 +8599,7 @@ msgstr "Definirano od strane korisnika"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr "Korisničke grupe"
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr "Korisnik upitan o nepoznatom tipu ažuriranja za vlastito polje %1 za %2 objekt #%3"
 
@@ -8666,7 +8666,7 @@ msgstr "Korisničko ime"
 msgid "Username format"
 msgstr "Format korisničkog imena"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Korisnici"
 
@@ -9365,7 +9365,7 @@ msgid "index"
 msgstr "indeks"
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr "neispravan datum završetka: %1"
 
diff --git a/share/po/hu.po b/share/po/hu.po
index 0061242..13d6c9d 100644
--- a/share/po/hu.po
+++ b/share/po/hu.po
@@ -2560,7 +2560,7 @@ msgstr ""
 msgid "DefaultFormat"
 msgstr ""
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Töröl"
 
@@ -5662,7 +5662,7 @@ msgstr ""
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr ""
 
@@ -6311,7 +6311,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr ""
 
@@ -6452,7 +6452,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr ""
 
@@ -6481,7 +6481,7 @@ msgstr ""
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6596,7 +6596,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Otthoni"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Megold"
 
@@ -6684,7 +6684,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Szerepek"
 
@@ -7376,7 +7376,7 @@ msgstr ""
 msgid "Stage"
 msgstr ""
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr ""
 
@@ -7576,7 +7576,7 @@ msgstr "Vasárnap"
 msgid "Suspended"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr "Rendszer"
 
@@ -8334,7 +8334,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr ""
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8600,7 +8600,7 @@ msgstr "Felhasználó által meghatározott"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8621,7 +8621,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr ""
 
@@ -8667,7 +8667,7 @@ msgstr "Felhasználó"
 msgid "Username format"
 msgstr ""
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Felhasználók"
 
@@ -9366,7 +9366,7 @@ msgid "index"
 msgstr ""
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/id.po b/share/po/id.po
index 5819631..eed7558 100644
--- a/share/po/id.po
+++ b/share/po/id.po
@@ -2560,7 +2560,7 @@ msgstr "Default: %1/%2 diganti dari %3 ke %4"
 msgid "DefaultFormat"
 msgstr ""
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Hapus"
 
@@ -5661,7 +5661,7 @@ msgstr ""
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr ""
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr ""
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr ""
 
@@ -6480,7 +6480,7 @@ msgstr ""
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Tempat Tinggal"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Penyelesaian"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Aturan"
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Tingkat"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr ""
 
@@ -7575,7 +7575,7 @@ msgstr ""
 msgid "Suspended"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr "Sistem"
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr ""
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8599,7 +8599,7 @@ msgstr "Pengguna didefinisikan"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr "Pengguna akan ditanya mengenai tipe pembaharuan yang tidak dikenal untuk kolom kustom %1 untuk %2 objek #%3"
 
@@ -8666,7 +8666,7 @@ msgstr "Nama Pengguna"
 msgid "Username format"
 msgstr ""
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Pengguna"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr ""
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/is.po b/share/po/is.po
index 6619a8e..c0fdae6 100644
--- a/share/po/is.po
+++ b/share/po/is.po
@@ -2560,7 +2560,7 @@ msgstr ""
 msgid "DefaultFormat"
 msgstr ""
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Eyða"
 
@@ -5661,7 +5661,7 @@ msgstr "Sýna aðeins sérsniðna reiti fyrir:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr "Opna það"
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr ""
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr ""
 
@@ -6480,7 +6480,7 @@ msgstr "Áminning '%1' endurvakin"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Bústaður"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Leysa"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Hlutverk"
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Þrep"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr ""
 
@@ -7575,7 +7575,7 @@ msgstr "Sunnudagur"
 msgid "Suspended"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr ""
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8599,7 +8599,7 @@ msgstr "Skilgreint af notanda"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr ""
 
@@ -8666,7 +8666,7 @@ msgstr "Notandanafn"
 msgid "Username format"
 msgstr ""
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Notendur"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr ""
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/it.po b/share/po/it.po
index d7f936f..376c585 100644
--- a/share/po/it.po
+++ b/share/po/it.po
@@ -2560,7 +2560,7 @@ msgstr "Default: %1/%2 modificato da %3 a %4"
 msgid "DefaultFormat"
 msgstr "FormatoPredefinito"
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Cancella"
 
@@ -5661,7 +5661,7 @@ msgstr "Mostra campi personalizzati solo per:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr "Aprilo"
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr "L'opzione RTAddressRegexp nella configurazione non corrisponde a %1"
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr "Riapri"
 
@@ -6451,7 +6451,7 @@ msgstr "Aggiorna schermata"
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "Respinto"
 
@@ -6480,7 +6480,7 @@ msgstr "Promemoria '%1' riaperto"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr "Promemoria '%1': %2"
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Casa"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Risolvi"
 
@@ -6683,7 +6683,7 @@ msgstr "Ruolo del Gruppo '%1' non trovato"
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Ruoli"
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Tappa"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr ""
 
@@ -7575,7 +7575,7 @@ msgstr "Domenica"
 msgid "Suspended"
 msgstr "Sospeso"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr "Sistema"
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr ""
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8599,7 +8599,7 @@ msgstr "Definito dall'utente"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr "L'utente ha richiesto un aggiornamento di tipo sconosciuto sul campo personalizzato %1 per %2 l'oggetto n°%3"
 
@@ -8666,7 +8666,7 @@ msgstr ""
 msgid "Username format"
 msgstr "Formato Nome Utente"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Utenti"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr ""
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/ja.po b/share/po/ja.po
index 80e0353..56f7587 100644
--- a/share/po/ja.po
+++ b/share/po/ja.po
@@ -2569,7 +2569,7 @@ msgstr ""
 msgid "DefaultFormat"
 msgstr ""
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "削除"
 
@@ -5670,7 +5670,7 @@ msgstr ""
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr ""
 
@@ -6319,7 +6319,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr ""
 
@@ -6460,7 +6460,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "拒否"
 
@@ -6489,7 +6489,7 @@ msgstr ""
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6604,7 +6604,7 @@ msgstr ""
 msgid "Residence"
 msgstr "住所"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "解決済みにする"
 
@@ -6692,7 +6692,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "役割"
 
@@ -7384,7 +7384,7 @@ msgstr ""
 msgid "Stage"
 msgstr ""
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr "保留にする"
 
@@ -7584,7 +7584,7 @@ msgstr "日曜日"
 msgid "Suspended"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr "システム"
 
@@ -8342,7 +8342,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr ""
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8608,7 +8608,7 @@ msgstr ""
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8629,7 +8629,7 @@ msgid "User Summary"
 msgstr "ユーザー情報"
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr ""
 
@@ -8675,7 +8675,7 @@ msgstr "名前"
 msgid "Username format"
 msgstr "ユーザ名の書式"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "ユーザー"
 
@@ -9373,7 +9373,7 @@ msgid "index"
 msgstr ""
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/lt.po b/share/po/lt.po
index 0bdf559..38399c4 100644
--- a/share/po/lt.po
+++ b/share/po/lt.po
@@ -2560,7 +2560,7 @@ msgstr "Nutylėta: %1/%2 pakeista iš %3 į %4"
 msgid "DefaultFormat"
 msgstr "Nutylėtasis formatas"
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Pašalinti"
 
@@ -5661,7 +5661,7 @@ msgstr "Papildomus laukus rodyti tik:"
 msgid "Open Inactive Tickets"
 msgstr "Atverti neaktyvius prašymus"
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr "Pradėti vykdyti"
 
@@ -6310,7 +6310,7 @@ msgstr "RT žurnalo pildymo konfigūracijos suvestinė:"
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr "RTAddressRegexp nustatymas konfigūracijoje neatitinka %1"
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr "Vykdyti pakartotinai"
 
@@ -6451,7 +6451,7 @@ msgstr "Atnaujinti pradinį puslapį"
 msgid "Refused to add link which would create a circular relationship"
 msgstr "Neleistina pridėti nuorodą, kuri suformuoja uždarą priklausomybių ratą"
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "Atmesti"
 
@@ -6480,7 +6480,7 @@ msgstr "Priminimas '%1' vykdomas pakartotinai"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr "Priminimas '%1': %2"
 
@@ -6595,7 +6595,7 @@ msgstr "Atstatyti standartinę RT temą"
 msgid "Residence"
 msgstr "Namų"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Užbaigti vykdyti"
 
@@ -6683,7 +6683,7 @@ msgstr "Rolės grupė '%1' nerasta"
 msgid "Role group exists already"
 msgstr "Rolės grupė jau egzistuoja"
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Rolės"
 
@@ -7375,7 +7375,7 @@ msgstr "Steko trasavimas į žurnalą nerašomas"
 msgid "Stage"
 msgstr "Stadija"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr "Pristabdyti"
 
@@ -7575,7 +7575,7 @@ msgstr "Sekmadienis"
 msgid "Suspended"
 msgstr "Laikinai išjungtas"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr "Sistema"
 
@@ -8333,7 +8333,7 @@ msgstr "Nesuteiktos teisės"
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr "Nuimkite pažymėjimą, jeigu norite išjungti išvardintų gavėjų informavimą <b>tik šiai operacijai</b>. Nuolatinis išjungimas valdomas <a href=\"%1\">Asmenų puslapyje</a>."
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr "Atkurti"
 
@@ -8599,7 +8599,7 @@ msgstr "Nustatyta naudotojo"
 msgid "User Defined conditions and results"
 msgstr "Naudotojo apibrėžtos sąlygos ir rezultatai"
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr "Naudotojų grupės"
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr "Naudotojo informacija"
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr "Naudotojas pageidauja nežinomo tipo pakeitimo %2 objekto Nr. %3 papildomam laukui %1"
 
@@ -8666,7 +8666,7 @@ msgstr "Naudotojo vardas"
 msgid "Username format"
 msgstr "Naudotojo vardo formatas"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Naudotojai"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr "indeksas"
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr "neteisinga galutinė data: %1"
 
diff --git a/share/po/lv.po b/share/po/lv.po
index c709382..5978f61 100644
--- a/share/po/lv.po
+++ b/share/po/lv.po
@@ -2560,7 +2560,7 @@ msgstr "Noklusējums: %1/%2 mainīts no %3 uz %4"
 msgid "DefaultFormat"
 msgstr ""
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Dzēst"
 
@@ -5661,7 +5661,7 @@ msgstr "Rādīt laukus tikai:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr ""
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr ""
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr ""
 
@@ -6480,7 +6480,7 @@ msgstr "Atgādinājums '%1' pāratvērts"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Uzturēšanās"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Atrisināt"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Tiesības"
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr ""
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr ""
 
@@ -7575,7 +7575,7 @@ msgstr "Svētdiena"
 msgid "Suspended"
 msgstr "Iesaldēts"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr ""
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8599,7 +8599,7 @@ msgstr "Lietotāja definēts"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr "Lietotājs pieprasīja nezināmu jauninājuma tipu cust.laukam %1 dēļ %2 objektam #%3"
 
@@ -8666,7 +8666,7 @@ msgstr "Lietotājvārds"
 msgid "Username format"
 msgstr "Lietotājvārda formāts"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Lietotāji"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr ""
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/nb.po b/share/po/nb.po
index 5418dc0..e3d29f0 100644
--- a/share/po/nb.po
+++ b/share/po/nb.po
@@ -2563,7 +2563,7 @@ msgstr "Standard: %1/%2 endret fra %3 til %4"
 msgid "DefaultFormat"
 msgstr "Standardformat"
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Slett"
 
@@ -5664,7 +5664,7 @@ msgstr "Vis bare fleksifelt for:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr "Åpne den"
 
@@ -6314,7 +6314,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr "«RTAddressRegexp»-valget i oppsettet er ikke i samsvar med «%1»"
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr "Gjenåpne"
 
@@ -6456,7 +6456,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "Avvis"
 
@@ -6485,7 +6485,7 @@ msgstr "Påminnelsen «%1» gjenåpnet"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6600,7 +6600,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Hjemme"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Løs"
 
@@ -6688,7 +6688,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Roller"
 
@@ -7380,7 +7380,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Nivå"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr "Stopp"
 
@@ -7580,7 +7580,7 @@ msgstr "søndag"
 msgid "Suspended"
 msgstr "Stoppet"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8339,7 +8339,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr "Ta vekk hake i bokser for å deaktivere varslinger til de opplistede mottakerne <b>for bare denne transaksjonen</b>; vedvarende deaktivering håndteres på <a href=\"%1\">brukersiden</a>."
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr "Gjenopprett"
 
@@ -8605,7 +8605,7 @@ msgstr "Tilpasset"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8626,7 +8626,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr "Brukeren ba om en ukjent oppdateringstype for fleksifeltet %1 for %2 objekt %3"
 
@@ -8672,7 +8672,7 @@ msgstr "Brukernavn"
 msgid "Username format"
 msgstr "Format på brukernavn"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Brukere"
 
@@ -9370,7 +9370,7 @@ msgid "index"
 msgstr "indeks"
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/nl.po b/share/po/nl.po
index a30ac20..c379903 100644
--- a/share/po/nl.po
+++ b/share/po/nl.po
@@ -2560,7 +2560,7 @@ msgstr "Standaard: %1/%2 verandered van %3 naar %4"
 msgid "DefaultFormat"
 msgstr ""
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Verwijderen"
 
@@ -5661,7 +5661,7 @@ msgstr "Toon alleen de custom fields voor:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr ""
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr ""
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr ""
 
@@ -6480,7 +6480,7 @@ msgstr ""
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Woonplaats"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Los op"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Rollen"
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Stadium"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr ""
 
@@ -7575,7 +7575,7 @@ msgstr ""
 msgid "Suspended"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr "Systeem"
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr ""
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8599,7 +8599,7 @@ msgstr "Gebruiker Gedifiniëerd"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr "De gebruiker vroeg om een onbekende aanpassing van custom field %1 voor %2 object #%3"
 
@@ -8666,7 +8666,7 @@ msgstr "Gebruikersnaam"
 msgid "Username format"
 msgstr ""
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Gebruikers"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr ""
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/nn.po b/share/po/nn.po
index e5eae1a..bc09b5c 100644
--- a/share/po/nn.po
+++ b/share/po/nn.po
@@ -2565,7 +2565,7 @@ msgstr "Standard: %1/%2 endra frå %3 til %4"
 msgid "DefaultFormat"
 msgstr "Standardformat"
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Slett"
 
@@ -5667,7 +5667,7 @@ msgstr "Vis berre fleksifelt for:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr ""
 
@@ -6318,7 +6318,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr "«RTAddressRegexp»-valet i oppsettet er ikkje i samsvar med «%1»"
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr ""
 
@@ -6460,7 +6460,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr ""
 
@@ -6489,7 +6489,7 @@ msgstr "Påminninga «%1» gjenopna"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6604,7 +6604,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Heime"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Løys"
 
@@ -6692,7 +6692,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Roller"
 
@@ -7384,7 +7384,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Nivå"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr ""
 
@@ -7584,7 +7584,7 @@ msgstr "sundag"
 msgid "Suspended"
 msgstr "Stoppa"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8343,7 +8343,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr ""
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8609,7 +8609,7 @@ msgstr "Tilpassa"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8630,7 +8630,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr "Brukaren bad om ein ukjend oppdateringstype for fleksifeltet %1 for %2 objekt %3"
 
@@ -8676,7 +8676,7 @@ msgstr "Brukarnamn"
 msgid "Username format"
 msgstr "Format på brukarnamn"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Brukarar"
 
@@ -9374,7 +9374,7 @@ msgid "index"
 msgstr ""
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/oc.po b/share/po/oc.po
index f6a26cf..5c63a41 100644
--- a/share/po/oc.po
+++ b/share/po/oc.po
@@ -2560,7 +2560,7 @@ msgstr ""
 msgid "DefaultFormat"
 msgstr ""
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Suprimir"
 
@@ -5661,7 +5661,7 @@ msgstr ""
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr ""
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr ""
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "Regetar"
 
@@ -6480,7 +6480,7 @@ msgstr ""
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr ""
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Resòlvre"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr ""
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr ""
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr ""
 
@@ -7575,7 +7575,7 @@ msgstr "Dimenge"
 msgid "Suspended"
 msgstr "Suspendut"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr ""
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8599,7 +8599,7 @@ msgstr "Definit per l'utilizaire"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr ""
 
@@ -8666,7 +8666,7 @@ msgstr ""
 msgid "Username format"
 msgstr ""
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Utilizaires"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr "indèx"
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/pl.po b/share/po/pl.po
index 6660706..f96fb31 100644
--- a/share/po/pl.po
+++ b/share/po/pl.po
@@ -2560,7 +2560,7 @@ msgstr "Domyślnie: %1/%2 zmieniane z \"%3\" na \"%4\""
 msgid "DefaultFormat"
 msgstr ""
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Usuń"
 
@@ -5662,7 +5662,7 @@ msgstr "Pokaż pola definiowane przez użytkownika tylko dla:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr "Otwórz"
 
@@ -6311,7 +6311,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr "Otwórz ponownie"
 
@@ -6452,7 +6452,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "Odrzuć"
 
@@ -6481,7 +6481,7 @@ msgstr ""
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr "Przypomnienie '%1': %2"
 
@@ -6596,7 +6596,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Tel. domowy"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Zamknij"
 
@@ -6684,7 +6684,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Role"
 
@@ -7377,7 +7377,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Etap"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr "Zamroź"
 
@@ -7577,7 +7577,7 @@ msgstr "Niedziela"
 msgid "Suspended"
 msgstr "Zawieszony"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8335,7 +8335,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr "Nie zaznaczaj pola by wyłączyć powiadomienia do podanych odbiorców <b>ale tylko dla tej transakcji</b>; usuwanie odbiorców na stałe możliwe jest przez stronę <a href=\"%1\">Osoby</a>."
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8601,7 +8601,7 @@ msgstr "Definiowany przez użytkownika"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8622,7 +8622,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr ""
 
@@ -8668,7 +8668,7 @@ msgstr "Nazwa"
 msgid "Username format"
 msgstr "Format nazwy użytkownika"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Użytkownicy"
 
@@ -9366,7 +9366,7 @@ msgid "index"
 msgstr ""
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/pt.po b/share/po/pt.po
index 6673255..0a6cf60 100644
--- a/share/po/pt.po
+++ b/share/po/pt.po
@@ -2560,7 +2560,7 @@ msgstr "Predefinição: %1/%2 alterado para %3 to %4"
 msgid "DefaultFormat"
 msgstr "FormatoDefault"
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Apagar"
 
@@ -5661,7 +5661,7 @@ msgstr "Apenas mostrar campos personalizados para:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr "Abrir"
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr "Abrir de novo"
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "Rejeitar"
 
@@ -6480,7 +6480,7 @@ msgstr ""
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Residência"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Resolver"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Perfis"
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr ""
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr "Colocar pendente"
 
@@ -7575,7 +7575,7 @@ msgstr ""
 msgid "Suspended"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr "Desmarque caixas para desabilitar notificações para os destinatários listados <b>apenas para esta transacção</b>; alterações permanentes devem ser efectuadas na <a href=\"%1\">página de contactos</a>."
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8599,7 +8599,7 @@ msgstr ""
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr ""
 
@@ -8666,7 +8666,7 @@ msgstr ""
 msgid "Username format"
 msgstr ""
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Utilizadores"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr ""
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/pt_BR.po b/share/po/pt_BR.po
index 6dd6ef8..b145bda 100644
--- a/share/po/pt_BR.po
+++ b/share/po/pt_BR.po
@@ -2560,7 +2560,7 @@ msgstr "Padrão: %1/%2 alterado de %3 para %4"
 msgid "DefaultFormat"
 msgstr ""
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Remover"
 
@@ -5661,7 +5661,7 @@ msgstr "Somente apresentar campos personalizados para:"
 msgid "Open Inactive Tickets"
 msgstr "Abrir Tíquetes Inativos"
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr "Abrir"
 
@@ -6310,7 +6310,7 @@ msgstr "Configuração de registro do RT está resumida abaixo:"
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr "A opção RTAddressRegxp na configuração não corresponde a %1"
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr "Reabrir"
 
@@ -6451,7 +6451,7 @@ msgstr "Atualizar página inicial"
 msgid "Refused to add link which would create a circular relationship"
 msgstr "Recusada a adição de vínculo que iria criar um relacionamento circular"
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "Rejeitar"
 
@@ -6480,7 +6480,7 @@ msgstr "Lembrete '%1' reaberto"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr "Lembrete '%1':%2"
 
@@ -6595,7 +6595,7 @@ msgstr "Redefinir para o Tema padrão do RT"
 msgid "Residence"
 msgstr "Residência"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Resolver"
 
@@ -6683,7 +6683,7 @@ msgstr "Grupo de Papel '%1' não encontrado"
 msgid "Role group exists already"
 msgstr "}EsGrupo de Papel já existe"
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Papéis"
 
@@ -7375,7 +7375,7 @@ msgstr "Rastreamentos da pilha não são registrados"
 msgid "Stage"
 msgstr "Estágio"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr "Bloquear"
 
@@ -7575,7 +7575,7 @@ msgstr "Domigo"
 msgid "Suspended"
 msgstr "Suspenso"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr "Sistema"
 
@@ -8333,7 +8333,7 @@ msgstr "Não autorizado"
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr "Desmarque a caixa para desabilitar as notificações para os destinatários listados <b> nesta transação somente </b>;  reagendamentos ou atrasos persistentes devem ser tratados na <a href=\"%1\">Página Pessoal</a>."
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr "Recuperar"
 
@@ -8599,7 +8599,7 @@ msgstr "Definido pelo Usuário"
 msgid "User Defined conditions and results"
 msgstr "Condições Definidas pelo Usuário e resultados"
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr "Grupos de usuários"
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr "Sumário de Usuário"
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr "Usuário solicitou uma atualização de tipo desconhecido do campo personalizado %1 para %2 objeto #%3"
 
@@ -8666,7 +8666,7 @@ msgstr "Nome de usuário"
 msgid "Username format"
 msgstr "Formato de nome de usuário"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Usuários"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr "índice"
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr "data devida inválida: %1"
 
diff --git a/share/po/pt_PT.po b/share/po/pt_PT.po
index c30767e..c7d6c0f 100644
--- a/share/po/pt_PT.po
+++ b/share/po/pt_PT.po
@@ -2560,7 +2560,7 @@ msgstr "Predefinição: %1/%2 alterado para %3 to %4"
 msgid "DefaultFormat"
 msgstr "Formatopordefeito"
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Apagar"
 
@@ -5661,7 +5661,7 @@ msgstr ""
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr ""
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr ""
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr ""
 
@@ -6480,7 +6480,7 @@ msgstr ""
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr ""
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr ""
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr ""
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr ""
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr ""
 
@@ -7575,7 +7575,7 @@ msgstr ""
 msgid "Suspended"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr ""
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8599,7 +8599,7 @@ msgstr ""
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr ""
 
@@ -8666,7 +8666,7 @@ msgstr ""
 msgid "Username format"
 msgstr ""
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr ""
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr ""
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/rt.pot b/share/po/rt.pot
index 32f5063..e80200a 100644
--- a/share/po/rt.pot
+++ b/share/po/rt.pot
@@ -2545,7 +2545,7 @@ msgstr ""
 msgid "DefaultFormat"
 msgstr ""
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr ""
 
@@ -5649,7 +5649,7 @@ msgstr ""
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr ""
 
@@ -6298,7 +6298,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr ""
 
@@ -6449,7 +6449,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr ""
 
@@ -6478,7 +6478,7 @@ msgstr ""
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6593,7 +6593,7 @@ msgstr ""
 msgid "Residence"
 msgstr ""
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr ""
 
@@ -6681,7 +6681,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr ""
 
@@ -7374,7 +7374,7 @@ msgstr ""
 msgid "Stage"
 msgstr ""
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr ""
 
@@ -7574,7 +7574,7 @@ msgstr ""
 msgid "Suspended"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8332,7 +8332,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr ""
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8598,7 +8598,7 @@ msgstr ""
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8619,7 +8619,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr ""
 
@@ -8665,7 +8665,7 @@ msgstr ""
 msgid "Username format"
 msgstr ""
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr ""
 
@@ -9363,7 +9363,7 @@ msgid "index"
 msgstr ""
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/ru.po b/share/po/ru.po
index 6cd89ae..6cebe79 100644
--- a/share/po/ru.po
+++ b/share/po/ru.po
@@ -2560,7 +2560,7 @@ msgstr "Умолчание: %1/%2 изменено с %3 на %4"
 msgid "DefaultFormat"
 msgstr "ФорматПоУмолчанию"
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Удалить"
 
@@ -5661,7 +5661,7 @@ msgstr "Показывать дополнительные поля только
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr "Открыть"
 
@@ -6310,7 +6310,7 @@ msgstr "Суммарная конфигурация логов RT приведе
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr "Открыть заново"
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "Отклонить"
 
@@ -6480,7 +6480,7 @@ msgstr "Напоминание '%1' открыто заново"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr "Напоминание '%1': %2"
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Домашний"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Решить"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr "Группа уже существует"
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Роли"
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Стадия"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr "Приостановить"
 
@@ -7575,7 +7575,7 @@ msgstr "Воскресенье"
 msgid "Suspended"
 msgstr "Приостановлена"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr "Система"
 
@@ -8333,7 +8333,7 @@ msgstr "Не авторизован"
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr "Здесь вы можете отключить уведомления по почте для конкретных пользователей. Данная настройка работает <b>только для текущей операции</b>. Перманентное отключение настраивается на странице <a href=\"%1\">Пользователи</a>."
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr "Отменить удаление"
 
@@ -8599,7 +8599,7 @@ msgstr "Задано пользователем"
 msgid "User Defined conditions and results"
 msgstr "Пользовательские условия и результаты"
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr "Группы пользователей"
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr "Информация о пользователе"
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr "Пользователь запросил изменение неизвестного типа для дополнительного поля %1 для объекта %2  #%3"
 
@@ -8666,7 +8666,7 @@ msgstr "Имя пользователя"
 msgid "Username format"
 msgstr "Формат имени пользователя"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Пользователи"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr "индекс"
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr "некорректная дата Дан срок: %1"
 
diff --git a/share/po/sk.po b/share/po/sk.po
index 1fce550..5d13343 100644
--- a/share/po/sk.po
+++ b/share/po/sk.po
@@ -2560,7 +2560,7 @@ msgstr "Štandard: %1/%2 zmenený z %3 na %4"
 msgid "DefaultFormat"
 msgstr "Štandardný rotmát"
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Odstrániť"
 
@@ -5661,7 +5661,7 @@ msgstr "Zobraziť iba vlastné polia pre:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr "Otvorte ho"
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr "Znova otvorenie"
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "Vyradiť"
 
@@ -6480,7 +6480,7 @@ msgstr ""
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr ""
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr ""
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr ""
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Fáza"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr "Odložiť"
 
@@ -7575,7 +7575,7 @@ msgstr "Nedeľa"
 msgid "Suspended"
 msgstr "Odročený"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr ""
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8599,7 +8599,7 @@ msgstr "Užívatľom definované"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr ""
 
@@ -8666,7 +8666,7 @@ msgstr "Meno užív."
 msgid "Username format"
 msgstr "Formát užív. mena"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Užívatelia"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr ""
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/sl.po b/share/po/sl.po
index 6abe0af..6a7d188 100644
--- a/share/po/sl.po
+++ b/share/po/sl.po
@@ -2560,7 +2560,7 @@ msgstr "Privzeto: %1/%2 spremenjeno iz %3 na %4"
 msgid "DefaultFormat"
 msgstr "Privzeta oblika"
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Izbriši"
 
@@ -5661,7 +5661,7 @@ msgstr "Prikaži le prilagojena polja za:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr ""
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr "RTAddressRegexp opcija v konfiguraciji se ne ujema s %1"
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr ""
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr ""
 
@@ -6480,7 +6480,7 @@ msgstr "Opomnik '%1' je bil ponovno odprt"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Bivališče"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Reši"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Vloge"
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Stanje"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr ""
 
@@ -7575,7 +7575,7 @@ msgstr "Nedelja"
 msgid "Suspended"
 msgstr "Suspendirano"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr ""
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8599,7 +8599,7 @@ msgstr "Uporabniško definirano"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr "Uporabnik je zahteval neznano posodobitev za prilagojeno polje %1 za %2 objekt #%3"
 
@@ -8666,7 +8666,7 @@ msgstr "Uporabniško ime"
 msgid "Username format"
 msgstr "Format uporabniškega imena"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Uporabniki"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr ""
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/sr.po b/share/po/sr.po
index a65fdbf..cc8035a 100644
--- a/share/po/sr.po
+++ b/share/po/sr.po
@@ -2560,7 +2560,7 @@ msgstr "Подразумевано: %1/%2 промењено из %3 у %4"
 msgid "DefaultFormat"
 msgstr "ПодразумеваниФормат"
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Обриши"
 
@@ -5661,7 +5661,7 @@ msgstr "Прикажи прилагођена поља само за:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr "Отвори"
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr "RTAddressRegexp опција у подешавањима не одговара %1"
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr "Поново отвори"
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "Одбиј"
 
@@ -6480,7 +6480,7 @@ msgstr "Подсетник '%1' поново отворен"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Пребивалиште"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Разреши"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr ""
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Етапа"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr "Зауставити"
 
@@ -7575,7 +7575,7 @@ msgstr "Недеља"
 msgid "Suspended"
 msgstr "Суспендовано"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr "Уклоните ознаку са поља како би онемогућили обавештења наведеним примаоцима <b>за само ову трансакцију</b>; упорним потискивањем се управља на <a href=\"%1\">Страница са људима</a>."
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr "Опозови брисање"
 
@@ -8599,7 +8599,7 @@ msgstr "кориснички дефинисано"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr "Корисник је затражио непознат тип закрпе за прилагођено поље %1 за %2 објекат #%3"
 
@@ -8666,7 +8666,7 @@ msgstr "Корисничко име"
 msgid "Username format"
 msgstr "Формат корисничког имена"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Корисници"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr "индекс"
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/sv.po b/share/po/sv.po
index f5f9cc6..622b48a 100644
--- a/share/po/sv.po
+++ b/share/po/sv.po
@@ -2560,7 +2560,7 @@ msgstr "Förval: %1/%2 ändrat från %3 till %4"
 msgid "DefaultFormat"
 msgstr "StandardFormat"
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Radera"
 
@@ -5661,7 +5661,7 @@ msgstr "Visa endast extrafält för:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr "Öppna"
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr "Öppna igen"
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr "Avvisa"
 
@@ -6480,7 +6480,7 @@ msgstr "Påminnelse '%1' öppnad igen"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Hemma"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Åtgärda"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Roller"
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Steg"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr "Väntläge"
 
@@ -7575,7 +7575,7 @@ msgstr "söndag"
 msgid "Suspended"
 msgstr "Avstängt"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr ""
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr ""
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr "Återskapa"
 
@@ -8599,7 +8599,7 @@ msgstr "Användardefinierad"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr ""
 
@@ -8666,7 +8666,7 @@ msgstr "Användarnamn"
 msgid "Username format"
 msgstr ""
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Användare"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr ""
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/tr.po b/share/po/tr.po
index 617aed9..dabadf3 100644
--- a/share/po/tr.po
+++ b/share/po/tr.po
@@ -2560,7 +2560,7 @@ msgstr ""
 msgid "DefaultFormat"
 msgstr ""
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "Sil"
 
@@ -5661,7 +5661,7 @@ msgstr "Sadece şunun için özel alanları göster:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr ""
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr ""
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr ""
 
@@ -6480,7 +6480,7 @@ msgstr "'%1' hatırlatıcısı tekrar açıldı"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Hane"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Çöz"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "Roller"
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Aşama"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr ""
 
@@ -7575,7 +7575,7 @@ msgstr "Pazar"
 msgid "Suspended"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr "Sistem"
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr ""
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8599,7 +8599,7 @@ msgstr "Kullanıcı Tanımlandı"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr ""
 
@@ -8666,7 +8666,7 @@ msgstr "Kullanıcı adı"
 msgid "Username format"
 msgstr ""
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "Kullanıcılar"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr ""
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/zh_CN.po b/share/po/zh_CN.po
index 92904ec..9164840 100644
--- a/share/po/zh_CN.po
+++ b/share/po/zh_CN.po
@@ -2560,7 +2560,7 @@ msgstr "默认:%1/%2 已自 %3 改为 %4"
 msgid "DefaultFormat"
 msgstr "默认格式"
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "删除"
 
@@ -5661,7 +5661,7 @@ msgstr "仅显示适用于下列项目的自定字段:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr ""
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr "配置里的RTAddressRegexp选项不匹配%1"
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr ""
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr ""
 
@@ -6480,7 +6480,7 @@ msgstr "已重新打开提醒项目'%1'"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "住所"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "解决"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "角色"
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr "阶段"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr ""
 
@@ -7575,7 +7575,7 @@ msgstr "星期日"
 msgid "Suspended"
 msgstr "暂时搁置的"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr "系统"
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr "Uncheck boxes to disable notifications to the listed recipients <b>仅针对该事务</b>不勾选以停止通知列出的收件人;在<a href=\"%1\">“人员页面”</a>中进行永久取消的管理。"
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8599,7 +8599,7 @@ msgstr "用户自定"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr "用户试图在%2对象 #%3 的自定字段%1上执行未知的更新操作"
 
@@ -8666,7 +8666,7 @@ msgstr "用户名"
 msgid "Username format"
 msgstr "用户名格式"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "用户"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr "索引"
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 
diff --git a/share/po/zh_TW.po b/share/po/zh_TW.po
index 7340d7e..9d94033 100644
--- a/share/po/zh_TW.po
+++ b/share/po/zh_TW.po
@@ -2560,7 +2560,7 @@ msgstr "預設:%1/%2 已自 %3 改為 %4"
 msgid "DefaultFormat"
 msgstr "預設格式"
 
-#: etc/RT_Config.pm:2798 etc/RT_Config.pm:2874 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
+#: etc/RT_Config.pm:2788 etc/RT_Config.pm:2832 share/html/Articles/Article/Elements/ShowSavedSearches:60 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:892 share/html/Elements/Tabs:917 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:196
 msgid "Delete"
 msgstr "刪除"
 
@@ -5661,7 +5661,7 @@ msgstr "僅顯示適用於下列項目的自訂欄位:"
 msgid "Open Inactive Tickets"
 msgstr ""
 
-#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2815 etc/RT_Config.pm:2862 etc/RT_Config.pm:2891
+#: etc/RT_Config.pm:2785 etc/RT_Config.pm:2792 etc/RT_Config.pm:2829 etc/RT_Config.pm:2836
 msgid "Open It"
 msgstr ""
 
@@ -6310,7 +6310,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr "配置里的RTAddressRegexp選項不匹配%1"
 
-#: etc/RT_Config.pm:2818 etc/RT_Config.pm:2822 etc/RT_Config.pm:2894 etc/RT_Config.pm:2898
+#: etc/RT_Config.pm:2793 etc/RT_Config.pm:2794 etc/RT_Config.pm:2837 etc/RT_Config.pm:2838
 msgid "Re-open"
 msgstr ""
 
@@ -6451,7 +6451,7 @@ msgstr ""
 msgid "Refused to add link which would create a circular relationship"
 msgstr ""
 
-#: etc/RT_Config.pm:2794 etc/RT_Config.pm:2810 etc/RT_Config.pm:2870 etc/RT_Config.pm:2886
+#: etc/RT_Config.pm:2787 etc/RT_Config.pm:2791 etc/RT_Config.pm:2831 etc/RT_Config.pm:2835
 msgid "Reject"
 msgstr ""
 
@@ -6480,7 +6480,7 @@ msgstr "已重新開啟提醒項目「%1」"
 
 #. ($args->{'NewReminder-Subject'}, loc("Created"))
 #. ($old_subject || $reminder->Subject, $_)
-#: lib/RT/Interface/Web.pm:2985 lib/RT/Interface/Web.pm:3003
+#: lib/RT/Interface/Web.pm:2983 lib/RT/Interface/Web.pm:3001
 msgid "Reminder '%1': %2"
 msgstr ""
 
@@ -6595,7 +6595,7 @@ msgstr ""
 msgid "Residence"
 msgstr "住處"
 
-#: etc/RT_Config.pm:2790 etc/RT_Config.pm:2806 etc/RT_Config.pm:2866 etc/RT_Config.pm:2882 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2786 etc/RT_Config.pm:2790 etc/RT_Config.pm:2830 etc/RT_Config.pm:2834 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "解決"
 
@@ -6683,7 +6683,7 @@ msgstr ""
 msgid "Role group exists already"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3817
+#: lib/RT/Interface/Web.pm:3813
 msgid "Roles"
 msgstr "角色"
 
@@ -7375,7 +7375,7 @@ msgstr ""
 msgid "Stage"
 msgstr "關卡"
 
-#: etc/RT_Config.pm:2802 etc/RT_Config.pm:2878
+#: etc/RT_Config.pm:2789 etc/RT_Config.pm:2833
 msgid "Stall"
 msgstr ""
 
@@ -7575,7 +7575,7 @@ msgstr "星期日"
 msgid "Suspended"
 msgstr "暫時擱置的"
 
-#: lib/RT/Interface/Web.pm:3774
+#: lib/RT/Interface/Web.pm:3770
 msgid "System"
 msgstr "系統"
 
@@ -8333,7 +8333,7 @@ msgstr ""
 msgid "Uncheck boxes to disable notifications to the listed recipients <b>for this transaction only</b>; persistent squelching is managed on the <a href=\"%1\">People page</a>."
 msgstr "Uncheck boxes to disable notifications to the listed recipients <b>僅針對該事務</b>不勾選以停止通知列出的收件人;在<a href=\"%1\">『人員頁面』</a>中進行永久取消的管理。"
 
-#: etc/RT_Config.pm:2826 etc/RT_Config.pm:2902
+#: etc/RT_Config.pm:2795 etc/RT_Config.pm:2839
 msgid "Undelete"
 msgstr ""
 
@@ -8599,7 +8599,7 @@ msgstr "使用者自訂"
 msgid "User Defined conditions and results"
 msgstr ""
 
-#: lib/RT/Interface/Web.pm:3792
+#: lib/RT/Interface/Web.pm:3788
 msgid "User Groups"
 msgstr ""
 
@@ -8620,7 +8620,7 @@ msgid "User Summary"
 msgstr ""
 
 #. ($cf->Name, ref $args{'Object'},                    $args{'Object'}->id)
-#: lib/RT/Interface/Web.pm:3202
+#: lib/RT/Interface/Web.pm:3200
 msgid "User asked for an unknown update type for custom field %1 for %2 object #%3"
 msgstr "使用者試圖在 %2 物件 #%3 的自訂欄位 %1 上執行未知的更新操作"
 
@@ -8666,7 +8666,7 @@ msgstr "帳號"
 msgid "Username format"
 msgstr "使用者名格式"
 
-#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3845 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
+#: lib/RT/CustomField.pm:1889 lib/RT/CustomField.pm:204 lib/RT/Interface/Web.pm:3841 share/html/Admin/Global/CustomFields/index.html:66 share/html/Admin/Groups/Members.html:73 share/html/Admin/Queues/People.html:85 share/html/Elements/Tabs:138 share/html/Elements/Tabs:256 share/html/Elements/Tabs:526 share/html/Elements/Tabs:67
 msgid "Users"
 msgstr "使用者"
 
@@ -9364,7 +9364,7 @@ msgid "index"
 msgstr "索引"
 
 #. ($due)
-#: lib/RT/Interface/Web.pm:2978
+#: lib/RT/Interface/Web.pm:2976
 msgid "invalid due date: %1"
 msgstr ""
 

-----------------------------------------------------------------------


More information about the rt-commit mailing list