[Rt-commit] rt branch, 4.0/extract-message-catalog-line-numbers, created. rt-4.0.2-22-gba6fa83

Alex Vandiver alexmv at bestpractical.com
Thu Aug 18 17:54:25 EDT 2011


The branch, 4.0/extract-message-catalog-line-numbers has been created
        at  ba6fa83dce0f011063b308091dd1da54366ead51 (commit)

- Log -----------------------------------------------------------------
commit af152a6af724c9df1835801e5e422f19a55aeb8a
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Thu Aug 18 17:41:36 2011 -0400

    Remove a needless string eval; qw() is equivalent to split here

diff --git a/devel/tools/extract-message-catalog b/devel/tools/extract-message-catalog
index b3392ef..9465954 100755
--- a/devel/tools/extract-message-catalog
+++ b/devel/tools/extract-message-catalog
@@ -201,14 +201,14 @@ sub extract_strings_from_code {
     # Comment-based qw mark: "qw(...)" # loc_qw
     $line = 1;
     pos($_) = 0;
-    while (m/\G.*?(?:(qw\([^)]+\))[\}\)\],;]*)?$re_loc_qw_suffix/smgo) {
+    while (m/\G.*?(?:qw\(([^)]+)\)[\}\)\],;]*)?$re_loc_qw_suffix/smgo) {
         my $str = $1;
 	$line += ( () = ( $& =~ /\n/g ) );    # cryptocontext!
         unless ( defined $str ) {
             warn "Couldn't process loc_qw at $filename:$line";
             next;
         }
-        foreach my $value (eval($str)) {
+        foreach my $value (split ' ', $str) {
             push @{ $FILECAT{$value} }, [ $filename, $line, '' ];
         }
     }

commit 298c9caa20447e830190ef8bc44aa85c8f2e90aa
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Thu Aug 18 17:43:37 2011 -0400

    Remove use of $& and cryptocontext
    
    This also fixes a bug in the reported line number of <&|l&>...</&> blocks

diff --git a/devel/tools/extract-message-catalog b/devel/tools/extract-message-catalog
index 9465954..df06b36 100755
--- a/devel/tools/extract-message-catalog
+++ b/devel/tools/extract-message-catalog
@@ -150,10 +150,10 @@ sub extract_strings_from_code {
 
     # Mason filter: <&|/l>...</&>
     my $line = 1;
-    while (m!\G.*?<&\|/l(.*?)&>(.*?)</&>!sg) {
-        my ( $vars, $str ) = ( $1, $2 );
+    while (m!\G(.*?<&\|/l(.*?)&>(.*?)</&>)!sg) {
+        my ( $all, $vars, $str ) = ( $1, $2, $3 );
         $vars =~ s/[\n\r]//g;
-        $line += ( () = ( $& =~ /\n/g ) );    # cryptocontext!
+        $line += ( $all =~ tr/\n/\n/ );
         $str =~ s/\\'/\'/g;
         #print "STR IS $str\n";
         push @{ $FILECAT{$str} }, [ $filename, $line, $vars ];
@@ -162,9 +162,9 @@ sub extract_strings_from_code {
     # Localization function: loc(...)
     $line = 1;
     pos($_) = 0;
-    while (m/\G.*?\bloc$RE{balanced}{-parens=>'()'}{-keep}/sg) {
-        my $match = $1;
-        $line += ( () = ( $& =~ /\n/g ) );    # cryptocontext!
+    while (m/\G(.*?\bloc$RE{balanced}{-parens=>'()'}{-keep})/sg) {
+        my ( $all, $match ) = ( $1, $2 );
+        $line += ( $all =~ tr/\n/\n/ );
 
         my ( $vars, $str );
         if ( $match =~
@@ -186,9 +186,9 @@ sub extract_strings_from_code {
     # Comment-based mark: "..." # loc
     $line = 1;
     pos($_) = 0;
-    while (m/\G.*?($re_delim)[\}\)\],;]*$re_loc_suffix/smgo) {
-	my $str = $1;
-	$line += ( () = ( $& =~ /\n/g ) );    # cryptocontext!
+    while (m/\G(.*?($re_delim)[\}\)\],;]*$re_loc_suffix)/smgo) {
+        my ( $all, $str ) = ( $1, $2 );
+        $line += ( $all =~ tr/\n/\n/ );
         unless ( defined $str ) {
             warn "Couldn't process loc at $filename:$line";
             next;
@@ -201,9 +201,9 @@ sub extract_strings_from_code {
     # Comment-based qw mark: "qw(...)" # loc_qw
     $line = 1;
     pos($_) = 0;
-    while (m/\G.*?(?:qw\(([^)]+)\)[\}\)\],;]*)?$re_loc_qw_suffix/smgo) {
-        my $str = $1;
-	$line += ( () = ( $& =~ /\n/g ) );    # cryptocontext!
+    while (m/\G(.*?(?:qw\(([^)]+)\)[\}\)\],;]*)?$re_loc_qw_suffix)/smgo) {
+        my ( $all, $str ) = ( $1, $2 );
+        $line += ( $all =~ tr/\n/\n/ );
         unless ( defined $str ) {
             warn "Couldn't process loc_qw at $filename:$line";
             next;
@@ -216,9 +216,9 @@ sub extract_strings_from_code {
     # Comment-based left pair mark: "..." => ... # loc_left_pair
     $line = 1;
     pos($_) = 0;
-    while (m/\G.*?(?:(\w+|$re_delim)\s*=>[^#\n]+?)?$re_loc_left_pair_suffix/smgo) {
-	my $key = $1;
-	$line += ( () = ( $& =~ /\n/g ) );    # cryptocontext!
+    while (m/\G(.*?(?:(\w+|$re_delim)\s*=>[^#\n]+?)?$re_loc_left_pair_suffix)/smgo) {
+        my ( $all, $key ) = ( $1, $2 );
+        $line += ( $all =~ tr/\n/\n/ );
         unless ( defined $key ) {
             warn "Couldn't process loc_left_pair at $filename:$line";
             next;
@@ -230,10 +230,9 @@ sub extract_strings_from_code {
     # Comment-based pair mark: "..." => "..." # loc_pair
     $line = 1;
     pos($_) = 0;
-    while (m/\G.*?(?:(\w+)\s*=>\s*($re_delim)[\}\)\],;]*)?$re_loc_pair_suffix/smgo) {
-	my $key = $1;
-	my $val = $2;
-	$line += ( () = ( $& =~ /\n/g ) );    # cryptocontext!
+    while (m/\G(.*?(?:(\w+)\s*=>\s*($re_delim)[\}\)\],;]*)?$re_loc_pair_suffix)/smgo) {
+        my ( $all, $key, $val ) = ( $1, $2, $3 );
+        $line += ( $all =~ tr/\n/\n/ );
         unless ( defined $key && defined $val ) {
             warn "Couldn't process loc_pair at $filename:$line";
             next;

commit ba6fa83dce0f011063b308091dd1da54366ead51
Author: Alex Vandiver <alexmv at bestpractical.com>
Date:   Thu Aug 18 17:46:54 2011 -0400

    Update po files with correct line numbers

diff --git a/share/po/bg.po b/share/po/bg.po
index c31ea67..775a250 100644
--- a/share/po/bg.po
+++ b/share/po/bg.po
@@ -113,7 +113,7 @@ msgstr "%1 %2 запазен."
 msgid "%1 %2 updated."
 msgstr ""
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -248,7 +248,7 @@ msgstr "%1 променен от %2 на %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr ""
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%1 таблица от %2"
@@ -472,7 +472,7 @@ msgstr "%quant(%1,час)"
 msgid "'%1' is an invalid value for status"
 msgstr "'%1' е невалидна стойност за състояние"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1421,11 +1421,11 @@ msgstr ""
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -1972,7 +1972,7 @@ msgstr "Създай персонализирано поле"
 msgid "Create a CustomField for queue %1"
 msgstr "Създай персонализирано поле за опашка %1"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr ""
 
@@ -2470,7 +2470,7 @@ msgstr "ДелегиранеПрава"
 msgid "Delegation"
 msgstr "Делегация"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Изтриване"
 
@@ -3869,7 +3869,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "Невалиден тип на група"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -4541,7 +4541,7 @@ msgstr "Редакция на scrip за опашка %1"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Редакция на scrip, който се отнася до всички опашки"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -5186,7 +5186,7 @@ msgstr "Няма право да съхранява общосистемни т
 msgid "No permission to set preferences"
 msgstr "Няма право да установява предпочитания"
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -5521,7 +5521,7 @@ msgstr "Покажи само одобрения на заявки, създад
 msgid "Only show custom fields for:"
 msgstr "Покажи само персонализирани полета за:"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -5741,7 +5741,7 @@ msgstr ""
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Достъпът отказан"
 
@@ -6128,7 +6128,7 @@ msgstr "RT/Админ/Редакция на група %1"
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -6257,7 +6257,7 @@ msgstr "Опресняване на резултатите от търсенет
 msgid "Refresh this page every %1 minutes."
 msgstr "Опресняване на тази страница на всеки %1 минути."
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -6392,7 +6392,7 @@ msgstr "Връщане стойности по подразбиране"
 msgid "Residence"
 msgstr "Местожителство"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Разрешаване"
 
@@ -6614,11 +6614,7 @@ msgstr ""
 msgid "Search Preferences"
 msgstr "Предпочитания на търсенето"
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -6676,10 +6672,14 @@ msgstr "Сигурност:"
 msgid "See also:"
 msgstr "Вижте също:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom field values"
 msgstr "Вижте стойности на персонализирани полета"
@@ -7212,7 +7212,7 @@ msgstr "Електронна таблица"
 msgid "Stage"
 msgstr "Етап"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -7716,7 +7716,7 @@ msgstr "Тези конфигурационни опции покриват ня
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "Това персонализирано поле не се отнася до този обект"
 
@@ -8074,7 +8074,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr "Неуспех при определянето на типа на обекта и id"
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -8108,12 +8108,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr "Неуспех при абонамента за табло %1: Достъпът отказан"
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -8717,7 +8717,7 @@ msgstr "Ще шифрирате изходяща ел. поща, но има п
 msgid "You are not an authorized user"
 msgstr "Вие не сте оторизиран потребител"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr "Можете да <a href=\"%1\">скочите до първото непрочетено съобщение</a> или <a href=\"%2\">скочите до първото непрочетено съобщение и да маркирате всички съобщения като прочетени</a>."
diff --git a/share/po/cs.po b/share/po/cs.po
index 3aae15a..d1618f4 100644
--- a/share/po/cs.po
+++ b/share/po/cs.po
@@ -101,7 +101,7 @@ msgstr "%1 %2 uložen."
 msgid "%1 %2 updated."
 msgstr ""
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -240,7 +240,7 @@ msgstr "%1 změněno z %2 na %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr ""
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%1 graf podle %2"
@@ -464,7 +464,7 @@ msgstr "%quant(%1,hodina,hodiny,hodin)"
 msgid "'%1' is an invalid value for status"
 msgstr "%1 je neplatnou hodnotou pro stav"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1417,11 +1417,11 @@ msgstr ""
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -1972,7 +1972,7 @@ msgstr "Vytvořit uživatelskou položku"
 msgid "Create a CustomField for queue %1"
 msgstr "Vytvoření uživatelské položky pro frontu %1"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr ""
 
@@ -2474,7 +2474,7 @@ msgstr "Delegovat práva"
 msgid "Delegation"
 msgstr "Pověření"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Smazat"
 
@@ -3885,7 +3885,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "Neplatný typ skupiny"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -4581,7 +4581,7 @@ msgstr "Upravovat scrip pro frontu %1"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Upravovat scrip platný pro všechny fronty"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -5226,7 +5226,7 @@ msgstr "Nedostatek práv k uložení dotazů pro celý systém"
 msgid "No permission to set preferences"
 msgstr "Nedostatek práv ke změně nastavení"
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -5577,7 +5577,7 @@ msgstr "Zobrazit jen schvalování pro požadavky založení před %1"
 msgid "Only show custom fields for:"
 msgstr "Zobrazit jen uživatelské položky pro:"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -5797,7 +5797,7 @@ msgstr ""
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Přístup nepovolen"
 
@@ -6192,7 +6192,7 @@ msgstr "RT/Správa/Úprava skupiny %1"
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -6321,7 +6321,7 @@ msgstr ""
 msgid "Refresh this page every %1 minutes."
 msgstr "Obnovit tuto stránku %quant(%1,každou,každé,každých) %numf(%1) %quant(%1,minutu,minuty,minut)."
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -6456,7 +6456,7 @@ msgstr "Obnovit výchozí"
 msgid "Residence"
 msgstr "Bydliště"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Vyřešit"
 
@@ -6678,11 +6678,7 @@ msgstr ""
 msgid "Search Preferences"
 msgstr "Nastavení hledání"
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -6740,10 +6736,14 @@ msgstr "Zabezpeční:"
 msgid "See also:"
 msgstr "Viz také:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom fields"
 msgstr "Vidět uživatelské položky"
@@ -7280,7 +7280,7 @@ msgstr "Tabulka"
 msgid "Stage"
 msgstr "Fáze"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -7780,7 +7780,7 @@ msgstr "Tyto volby nastavení zahrnují některé základní údaje potřebné k
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "Tato uživatelská položka se nevztahuje k tomuto objektu"
 
@@ -8138,7 +8138,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr "Nelze určit typ objektu nebo id"
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -8172,12 +8172,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr ""
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -8789,7 +8789,7 @@ msgstr "Chystáte se zašifrovat odchozí emailové zprávy, ale s veřejným kl
 msgid "You are not an authorized user"
 msgstr "Nejste autorizovaný uživatel"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr "Můžete <a href=\"%1\">přejít na první nepřečtenou zprávu</a> nebo <a href=\"%2\">přejít na první nepřečtenou zprávu a označit všechny zprávy jako přečtené</a>."
diff --git a/share/po/da.po b/share/po/da.po
index 9cbdaf3..57f41f1 100644
--- a/share/po/da.po
+++ b/share/po/da.po
@@ -128,7 +128,7 @@ msgstr "%1 %2 gemt."
 msgid "%1 %2 updated."
 msgstr "%1 %2 opdateret."
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -291,7 +291,7 @@ msgstr "%1 ændret fra %2 til %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr "%1 ændret fra '%2' til '%3'"
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%1 diagram på grundlag af %2"
@@ -547,7 +547,7 @@ msgstr "%quant(%1,time)"
 msgid "'%1' is an invalid value for status"
 msgstr "'%1' er ikke en gyldig statusværdi"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr "'%1' er ikke en valid klasseidentifikator"
@@ -1744,11 +1744,11 @@ msgstr "Klassenavn"
 msgid "Class id"
 msgstr "Klasse-id"
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr "Klasse er allerede anvendt globalt"
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr "Klasse er allerede anvendt på %1"
@@ -2415,7 +2415,7 @@ msgstr "Opret et ekstrafelt, der gælder for alle køer"
 msgid "Create a new Custom Field"
 msgstr "Opret et nyt ekstrafelt"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr "Opret en ny artikel"
 
@@ -2977,7 +2977,7 @@ msgstr "OverdragRettigheder"
 msgid "Delegation"
 msgstr "Overdragelse"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Slet"
 
@@ -4560,7 +4560,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "Ugyldig gruppetype"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -5340,7 +5340,7 @@ msgstr "Rediger et scrip for kø %1"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Rediger et scrip, der gælder for alle køer"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr "Tilpas artikel #%1"
@@ -6049,7 +6049,7 @@ msgstr "Ingen tilladelse til at gemme søgninger for hele systemet"
 msgid "No permission to set preferences"
 msgstr "Ingen tilladelse til at ændre indstillinger"
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -6440,7 +6440,7 @@ msgstr "Vis kun ekstrafelter for:"
 msgid "Open"
 msgstr "Ã…ben"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -6692,7 +6692,7 @@ msgstr ""
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Adgang afvist"
 
@@ -7195,7 +7195,7 @@ msgstr "RT's e-mail-kommandotilstand kræver PGP-verificering. Enten har du ikke
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -7332,7 +7332,7 @@ msgstr ""
 msgid "Refresh this page every %1 minutes."
 msgstr "Opdater denne side hver %1 minut."
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -7475,7 +7475,7 @@ msgstr "Sæt tilbage til standard"
 msgid "Residence"
 msgstr "Hjemme"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Løs"
 
@@ -7745,11 +7745,7 @@ msgstr "Søgepræferencer"
 msgid "Search attribute load failure"
 msgstr "Indlæsningsfejl på søgeegenskab"
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -7815,10 +7811,14 @@ msgstr "Sikkerhed:"
 msgid "See also:"
 msgstr "Se også:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom field values"
 msgstr "Se værdier for det brugerdefinerede felt"
@@ -8423,7 +8423,7 @@ msgstr "Regneark"
 msgid "Stage"
 msgstr "Trin"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -8995,7 +8995,7 @@ msgstr "Disse konfigurationsmuligheder dækker nogle af de grundlæggende inform
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "Dette ekstrafelt gælder ikke for dette objekt"
 
@@ -9437,7 +9437,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr "Var ikke i stand til at afgøre elementets type eller id"
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -9471,12 +9471,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr "Det er ikke muligt at abonnere på instrumentpanel %1: Utilstrækkelige tilladelser"
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -10180,7 +10180,7 @@ msgstr ""
 msgid "You are not an authorized user"
 msgstr "Du er ikke en autoriseret bruger"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr "Du kan <a href=\"%1\">hoppe videre til den første ulæste besked</a> eller <a href=\"%2\">hoppe videre til den første ulæste besked samtidig med at du markerer alle beskeder som læste</a>."
diff --git a/share/po/de.po b/share/po/de.po
index 9949dc1..f2bc14e 100644
--- a/share/po/de.po
+++ b/share/po/de.po
@@ -132,7 +132,7 @@ msgstr "%1 %2 gespeichert."
 msgid "%1 %2 updated."
 msgstr "%1 %2 aktualisiert."
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -287,7 +287,7 @@ msgstr "%1 von %2 in %3 geändert"
 msgid "%1 changed from '%2' to '%3'"
 msgstr "%1 geändert von '%2' in '%3'"
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%1 Diagramm von %2"
@@ -519,7 +519,7 @@ msgstr "%quant(%1, Stunde, Stunden)"
 msgid "'%1' is an invalid value for status"
 msgstr "'%1' ist ein ungültiger Wert für Status"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr "\"%1\" ist keine gültige Klasse-Kennung"
@@ -1580,11 +1580,11 @@ msgstr "Klassenname"
 msgid "Class id"
 msgstr "Klassen-ID"
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr "Klasse wurde bereits auf %1 angewendet"
@@ -2159,7 +2159,7 @@ msgstr "Erstelle ein benutzerdefiniertes Feld"
 msgid "Create a CustomField for queue %1"
 msgstr "Erstelle ein benutzerdefiniertes Feld für den Bereich %1"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr "Neuen Artikel anlegen"
 
@@ -2693,7 +2693,7 @@ msgstr "RechteWeitergabe"
 msgid "Delegation"
 msgstr "Rechteweitergabe"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Löschen"
 
@@ -4164,7 +4164,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "Ungültige Gruppenart"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -4904,7 +4904,7 @@ msgstr "Ändere ein Scrip für den Bereich %1"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Ändere ein globales benutzerdefiniertes Feld"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -5593,7 +5593,7 @@ msgstr "Keine Berechtigung um System weite Suchen zu speichern"
 msgid "No permission to set preferences"
 msgstr "Keine Berechtigung um Einstellungen zu speichern"
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -5968,7 +5968,7 @@ msgstr "Nur Benutzerdefinierte Felder anzeigen für:"
 msgid "Open"
 msgstr "Offen"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -6196,7 +6196,7 @@ msgstr "Perl Bibliothek Such Reihenfolge"
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Zugriff verweigert"
 
@@ -6599,7 +6599,7 @@ msgstr "Bearbeite Mitgliedschaft für die Gruppe %1"
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr "RTAddressRegexp Wert in der Konfiguration trifft nicht %1"
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -6728,7 +6728,7 @@ msgstr "Ergebnis alle 60 Minuten aktualisieren."
 msgid "Refresh this page every %1 minutes."
 msgstr "Seite alle %1 Minuten aktualisieren."
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -6867,7 +6867,7 @@ msgstr "Zurücksetzen"
 msgid "Residence"
 msgstr "Zuhause"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Erledigen"
 
@@ -7113,11 +7113,7 @@ msgstr "Sucheinstellungen"
 msgid "Search attribute load failure"
 msgstr "Suchattribut lade Fehler"
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -7187,10 +7183,14 @@ msgstr "Sicherheit:"
 msgid "See also:"
 msgstr "Siehe auch:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom field values"
 msgstr "Werte von benutzerdefinierten Feldern sehen"
@@ -7759,7 +7759,7 @@ msgstr "Tabellenkalkulation"
 msgid "Stage"
 msgstr "Phase"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -8291,7 +8291,7 @@ msgstr ""
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "Dieses benutzerdefinierte Feld passt nicht zum Objekt"
 
@@ -8673,7 +8673,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr "Konnte Objekt Typ oder Id nicht feststellen"
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -8707,12 +8707,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr "Konnte Anzeigetafel %1 nicht abonnieren: Zugriff verweigert"
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -9344,7 +9344,7 @@ msgstr "Du willst ausgehende Nachrichten verschlüsseln, aber es gibt Probleme m
 msgid "You are not an authorized user"
 msgstr "Sie sind kein autorisierter Benutzer"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr "Springe zur <a href=\"%1\"> ungelesenen Nachricht</a> oder springe zur <a href=\"%2\"> ungelesenen Nachricht und markiere alle Nachrichten als gelesen</a>."
diff --git a/share/po/el.po b/share/po/el.po
index 29a9f17..5448ab2 100644
--- a/share/po/el.po
+++ b/share/po/el.po
@@ -113,7 +113,7 @@ msgstr "%1 %2 αποθηκεύθηκε."
 msgid "%1 %2 updated."
 msgstr "%1 %2 ενημερώθηκε."
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -248,7 +248,7 @@ msgstr "%1 άλλαξε από %2 σε %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr ""
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%1 γράφημα από %2"
@@ -472,7 +472,7 @@ msgstr "%quant(%1,hour)"
 msgid "'%1' is an invalid value for status"
 msgstr "Η '%1' δεν έιναι έγκυρη τιμη για κατάσταση"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1413,11 +1413,11 @@ msgstr ""
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -1956,7 +1956,7 @@ msgstr "Δημιουργία Ειδικού Πεδίου"
 msgid "Create a CustomField for queue %1"
 msgstr "Δημιουργία Ειδικού Πεδίου για την ουρά %1"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr ""
 
@@ -2462,7 +2462,7 @@ msgstr "DelegateRights"
 msgid "Delegation"
 msgstr "Ανάθεση"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Διαγραφή"
 
@@ -3857,7 +3857,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "Άκυρος Τύπος Ομάδας"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -4529,7 +4529,7 @@ msgstr "Τροποποίηση Scrip για την ουρά %1"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Τροποποίηση Scrip που εφαρμόζεται σε όλες τις ουρές"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -5174,7 +5174,7 @@ msgstr "Δεν έχετε δικαίωμα αποθήκευσης καθολικ
 msgid "No permission to set preferences"
 msgstr "Δεν έχετε δικαίωμα καθορισμού προτιμήσεων"
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -5509,7 +5509,7 @@ msgstr "Δείξε μόνο εγκρίσεις για τις αιτήσεις π
 msgid "Only show custom fields for:"
 msgstr "Δείξε μόνο τα προσαρμοσμένα πεδία για:"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -5721,7 +5721,7 @@ msgstr "Ταξινόμιση αναζήτησης βιβλιοθηκών Perl"
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Δεν επιτρέπεται η πρόσβαση"
 
@@ -6100,7 +6100,7 @@ msgstr "RT/Διαχείριση/Επεξεργασία ομάδας %1"
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr "Η επιλογή RTAddressRegexp στις ριθμίσεις δεν ταιριάζει με το %1"
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -6229,7 +6229,7 @@ msgstr "Ανανέωση αποτελεσμάτων αναζήτησης κάθ
 msgid "Refresh this page every %1 minutes."
 msgstr "Ανανέωση αυτής της σελίδας κάθε %1 λεπτά."
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -6364,7 +6364,7 @@ msgstr "Επαναφορά προκαθορισμένων"
 msgid "Residence"
 msgstr "Κατοικία"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Επίλυση"
 
@@ -6586,11 +6586,7 @@ msgstr ""
 msgid "Search Preferences"
 msgstr "Προτιμήσεις Αναζήτησης"
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -6648,10 +6644,14 @@ msgstr "Ασφάλεια:"
 msgid "See also:"
 msgstr "Δείτε επίσης:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom field values"
 msgstr "Προβολή τιμών ειδικών πεδίων"
@@ -7184,7 +7184,7 @@ msgstr "Λογιστικό φύλλο"
 msgid "Stage"
 msgstr "Στάδιο"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -7688,7 +7688,7 @@ msgstr "Αυτές οι επιλογές ρυθμίσεων καλύπτουν 
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "Αυτό το ειδικό πεδίο δεν εφαρμόζεται για αυτό το αντικείμενο"
 
@@ -8046,7 +8046,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr "Δεν έχει καθοριστεί ο τύπος και ταυτότητα του αντικειμένου"
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -8080,12 +8080,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr "Δεν έχει γίνει εγγραφή στην πινακίδα %1: Δεν επιτρέπεται η πρόσβαση"
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -8689,7 +8689,7 @@ msgstr "Πρόκειται να κρυπτογραφήσετε τα εξερχό
 msgid "You are not an authorized user"
 msgstr "Δεν είστε εξουσιοδοτημένος χρήστης"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr "Μπορείτε <a href=\"%1\">πάτε στο πρώτο αδιάβαστο μηνυμα</a> η να <a href=\"%2\">πάτε στο πρώτο αδιάβαστο μηνυμα κα ινα σημειώσετε όλα τα μηνύματα σαν διαβασμένα</a>."
diff --git a/share/po/en_GB.po b/share/po/en_GB.po
index a2dadfa..cc477df 100644
--- a/share/po/en_GB.po
+++ b/share/po/en_GB.po
@@ -113,7 +113,7 @@ msgstr "%1 %2 saved."
 msgid "%1 %2 updated."
 msgstr "%1 %2 updated."
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -247,7 +247,7 @@ msgstr "%1 by %2"
 msgid "%1 changed from %2 to %3"
 msgstr "%1 changed from %2 to %3"
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%1 chart by %2"
@@ -2019,7 +2019,7 @@ msgstr "DelegateRights"
 msgid "Delegation"
 msgstr "Delegation"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Delete"
 
@@ -4722,7 +4722,7 @@ msgstr "Perl configuration"
 msgid "Perl library search order"
 msgstr "Perl library search order"
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Permission Denied"
 
@@ -5319,7 +5319,7 @@ msgstr "Reset to default"
 msgid "Residence"
 msgstr "Residence"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Resolve"
 
@@ -6376,7 +6376,7 @@ msgstr "These comments aren't generally visible to the user"
 msgid "These configuration options cover some of the basics needed to get RT up and running.  We need to know the name of your RT installation and the domain name where RT will live.  You will also need to set a password for your default administrative user."
 msgstr "These configuration options cover some of the basics needed to get RT up and running.  We need to know the name of your RT installation and the domain name where RT will live.  You will also need to set a password for your default administrative user."
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "This custom field does not apply to that object"
 
@@ -7157,7 +7157,7 @@ msgstr "You are going to encrypt outgoing email messages, but there is a problem
 msgid "You are not an authorized user"
 msgstr "You are not an authorised user"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
diff --git a/share/po/es.po b/share/po/es.po
index 8d839e3..a8ecf16 100644
--- a/share/po/es.po
+++ b/share/po/es.po
@@ -113,7 +113,7 @@ msgstr "%1 %2 guardado."
 msgid "%1 %2 updated."
 msgstr "%1 %2 actualizados."
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -272,7 +272,7 @@ msgstr "%1 ha cambiado de %2 a %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr "%1 cambiado desde «%2» a «%3»"
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "diagrama %1 por %2"
@@ -536,7 +536,7 @@ msgstr "%quant(%1, hora)"
 msgid "'%1' is an invalid value for status"
 msgstr "'%1' es un valor inválido para el estado"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr "«%1» no es un identificador de clase válido"
@@ -1741,11 +1741,11 @@ msgstr "Nombre de la clase"
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -2424,7 +2424,7 @@ msgstr "Crear un campo personalizable que se aplique a todas las colas"
 msgid "Create a new Custom Field"
 msgstr "Crear un nuevo campo personalizable"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr "Crear un artículo nuevo"
 
@@ -3006,7 +3006,7 @@ msgstr "DelegarPermisos"
 msgid "Delegation"
 msgstr "Delegar"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Borrar"
 
@@ -4613,7 +4613,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "Tipo de grupo no válido"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -5409,7 +5409,7 @@ msgstr "Modificar una acción para la cola %1"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Modificar una acción que se aplique a todas las colas"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -6130,7 +6130,7 @@ msgstr "Sin permiso para grabar búsquedas a través del sistema."
 msgid "No permission to set preferences"
 msgstr "Sin permisos para establecer preferencias"
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -6525,7 +6525,7 @@ msgstr "Solo mostrar campos personalizados para:"
 msgid "Open"
 msgstr "Abierto"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -6769,7 +6769,7 @@ msgstr "Orden de búsqueda de librería Perl"
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Permiso denegado"
 
@@ -7280,7 +7280,7 @@ msgstr "RT/Admin/Editar el grupo %1"
 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:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -7417,7 +7417,7 @@ msgstr "Refrescar resultados de la búsqueda cada 60 minutos."
 msgid "Refresh this page every %1 minutes."
 msgstr "Refrescar esta página cada %1 minutos"
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -7564,7 +7564,7 @@ msgstr "Restaurar a valores por defecto"
 msgid "Residence"
 msgstr "Residencia"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Resolver"
 
@@ -7830,11 +7830,7 @@ msgstr "Criterios de búsqueda"
 msgid "Search Preferences"
 msgstr "Preferencias de Búsqueda"
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -7904,10 +7900,14 @@ msgstr "Vea también:"
 msgid "See also: %1"
 msgstr "Ver tambien: %1"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom field values"
 msgstr "Ver valores de los campos personalizados"
@@ -8512,7 +8512,7 @@ msgstr "Hoja de cálculo"
 msgid "Stage"
 msgstr "Fase"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -9104,7 +9104,7 @@ msgstr "Estas opciones de configuración cubren algunas de las bases necesarios
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "Este campo personalizado no se aplica a este objeto"
 
@@ -9554,7 +9554,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr "Incapaz de determinar el id o el tipo de objeto"
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -9588,12 +9588,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr "No es posible suscribirse al cuadro de mandos %1: Permiso denegado"
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -10293,7 +10293,7 @@ msgstr "Va a encriptar los correos salientes, pero hay un problema con la clave
 msgid "You are not an authorized user"
 msgstr "Usted no es un usuario autorizado"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr "Puede <a href=\"%1\">ir al primer mensaje sin leer</a> ó <a href=\"%2\">ir al primer mensaje sin leer y marcar todos los mensajes como leídos</a>."
diff --git a/share/po/et.po b/share/po/et.po
index bc660e8..dd8abe6 100644
--- a/share/po/et.po
+++ b/share/po/et.po
@@ -113,7 +113,7 @@ msgstr "%1 %2 salvestati."
 msgid "%1 %2 updated."
 msgstr "%1 %2 muudeti."
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -252,7 +252,7 @@ msgstr "%1 muudeti väärtusest %2 %3-ks"
 msgid "%1 changed from '%2' to '%3'"
 msgstr ""
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%1 diagramm %2"
@@ -476,7 +476,7 @@ msgstr "%quant(%1,hour)"
 msgid "'%1' is an invalid value for status"
 msgstr "'%1' on oleku vigane väärtus"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1433,11 +1433,11 @@ msgstr ""
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -1988,7 +1988,7 @@ msgstr "Loo CustomField"
 msgid "Create a CustomField for queue %1"
 msgstr "Loo CustomField järjekorra %1 jaoks"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr ""
 
@@ -2490,7 +2490,7 @@ msgstr "Delegeeri teatud sulle antud õigused"
 msgid "Delegation"
 msgstr "Delegeerimine"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Kustuta"
 
@@ -3865,7 +3865,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr ""
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -4525,7 +4525,7 @@ msgstr "Muuda järjekorra %1 skrip"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Muuda skrippi, mis kehtib kõigi järjekordade suhtes"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -5158,7 +5158,7 @@ msgstr "Puudub õigus talletada süsteemi ulatuses otsingut"
 msgid "No permission to set preferences"
 msgstr "Puudub õigus seada eelistusi"
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -5485,7 +5485,7 @@ msgstr "Näita kinnitusi ainult enne %1 tehtud päringute kohta"
 msgid "Only show custom fields for:"
 msgstr "Näita kohandatud välju:"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -5693,7 +5693,7 @@ msgstr "Perli teekide ostsingu järjestus"
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Õigused puuduvad"
 
@@ -6056,7 +6056,7 @@ msgstr "RT/administreeri/muuda rühma %1"
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -6181,7 +6181,7 @@ msgstr "Värskenda otsingu tulemusi iga 60 minuti järel"
 msgid "Refresh this page every %1 minutes."
 msgstr "Värskenda otsingu tulemusi iga %1 minuti järel"
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -6316,7 +6316,7 @@ msgstr "Lähtesta vaikeväärtustele"
 msgid "Residence"
 msgstr "Elukoht"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Lahenda"
 
@@ -6526,11 +6526,7 @@ msgstr ""
 msgid "Search Preferences"
 msgstr ""
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -6584,10 +6580,14 @@ msgstr ""
 msgid "See also:"
 msgstr "Vaata ka:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom field values"
 msgstr "Vaata kohandatud välja väärtusi"
@@ -7100,7 +7100,7 @@ msgstr ""
 msgid "Stage"
 msgstr ""
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -7576,7 +7576,7 @@ msgstr ""
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr ""
 
@@ -7910,7 +7910,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr ""
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -7944,12 +7944,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr ""
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -8525,7 +8525,7 @@ msgstr ""
 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption."
 msgstr ""
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr ""
diff --git a/share/po/fi.po b/share/po/fi.po
index 6e80f13..3ff16ca 100644
--- a/share/po/fi.po
+++ b/share/po/fi.po
@@ -110,7 +110,7 @@ msgstr "%1 %2 tallennettu."
 msgid "%1 %2 updated."
 msgstr "%1 %2 päivitetty"
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -269,7 +269,7 @@ msgstr "%1 muutettu arvosta %2 arvoon %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr "%1 muutettu arvosta '%2' arvoon '%3'"
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%1 kaavio %2"
@@ -521,7 +521,7 @@ msgstr "%quant(%1,hour)"
 msgid "'%1' is an invalid value for status"
 msgstr "'%1' ei kelpaa tilan arvoksi"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1626,11 +1626,11 @@ msgstr "Luokan nimi"
 msgid "Class id"
 msgstr "Luokan tunnus"
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr "Luokka on jo käytössä kohteelle %1"
@@ -2289,7 +2289,7 @@ msgstr "Luo kenttä, jota sovelletaan kaikkiin työjonoihin"
 msgid "Create a new Custom Field"
 msgstr "Luo uusi kenttä"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr "Uusi artikkeli"
 
@@ -2855,7 +2855,7 @@ msgstr "DelegateRights"
 msgid "Delegation"
 msgstr "Delegointi"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Poista"
 
@@ -4366,7 +4366,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "Ryhmän tyyppi ei kelpaa"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -5110,7 +5110,7 @@ msgstr "Muokkaa jonon %1 toimintoa"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Muokkaa toimintoa, jota sovelletaan kaikkiin jonoihin"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -5803,7 +5803,7 @@ msgstr ""
 msgid "No permission to set preferences"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -6166,7 +6166,7 @@ msgstr ""
 msgid "Open"
 msgstr "Avoin"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -6406,7 +6406,7 @@ msgstr ""
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Pääsy kielletty"
 
@@ -6869,7 +6869,7 @@ msgstr "RT:n sähköpostiohjaustila vaatii PGP-tunnistamista. Et allekirjoittanu
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -7006,7 +7006,7 @@ msgstr ""
 msgid "Refresh this page every %1 minutes."
 msgstr "Päivitä tämä sivu %1 minuutin välein"
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -7149,7 +7149,7 @@ msgstr "Palauta oletus"
 msgid "Residence"
 msgstr "Koti"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Päätä"
 
@@ -7399,11 +7399,7 @@ msgstr "Hakukriteerit"
 msgid "Search Preferences"
 msgstr ""
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -7461,10 +7457,14 @@ msgstr ""
 msgid "See also:"
 msgstr "Katso myös:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: lib/RT/Class.pm:88
 msgid "See that this class exists"
 msgstr ""
@@ -8017,7 +8017,7 @@ msgstr ""
 msgid "Stage"
 msgstr ""
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -8581,7 +8581,7 @@ msgstr ""
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr ""
 
@@ -9019,7 +9019,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr ""
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -9053,12 +9053,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr "Ei voitu tilata työtilaa %1: Pääsy estetty"
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -9738,7 +9738,7 @@ msgstr ""
 msgid "You are not an authorized user"
 msgstr "Et ole valtuutettu käyttäjä"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr "Voit <a href=\"%1\">hypätä ensimmäiseen uuteen viestiin</a> tai <a href=\"%2\">hypätä ensimmäiseen viestiin ja merkitä kaikki viestit luetuiksi</a>."
diff --git a/share/po/fr.po b/share/po/fr.po
index 8b16c1c..2681429 100644
--- a/share/po/fr.po
+++ b/share/po/fr.po
@@ -141,7 +141,7 @@ msgstr "%1 %2 sauvés."
 msgid "%1 %2 updated."
 msgstr "%1 %2 mis à jour"
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -284,7 +284,7 @@ msgstr "%1 changé(e) de %2 à %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr "%1 changé de '%2' en '%3'"
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "graphique %1 par %2"
@@ -512,7 +512,7 @@ msgstr "%quant(%1,heure)"
 msgid "'%1' is an invalid value for status"
 msgstr "'%1' est un statut invalide"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr "'%1' n'est pas un identifiant de classe valide"
@@ -1533,11 +1533,11 @@ msgstr "Nom de la classe"
 msgid "Class id"
 msgstr "Identifiant de la classe"
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr "Cette classe est déjà appliquée en global"
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr "Cette classe est déjà appliquée à %1"
@@ -2096,7 +2096,7 @@ msgstr "Ajouter un Champ Personnalisé"
 msgid "Create a CustomField for queue %1"
 msgstr "Ajouter un champ personnalisé pour la file %1"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr "Créer un nouvel article"
 
@@ -2622,7 +2622,7 @@ msgstr "DéléguerDroits"
 msgid "Delegation"
 msgstr "Délégation"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Supprimer"
 
@@ -4049,7 +4049,7 @@ msgstr "Source de valeurs de champs personnalisé invalide"
 msgid "Invalid Group Type"
 msgstr "Type de groupe invalide"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr "File invalide, impossible d'appliquer la classe : %1"
@@ -4773,7 +4773,7 @@ msgstr "Modifier le scrip pour la file %1"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Modifier le scrip qui s'applique à toutes les files"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr "Modifier l'article n°%1"
@@ -5466,7 +5466,7 @@ msgstr "Pas de permission pour sauvegarder des recherches systèmes"
 msgid "No permission to set preferences"
 msgstr "Pas de permission pour modifier les préférences"
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr "Permission refusée pour voir cet article"
 
@@ -5825,7 +5825,7 @@ msgstr "Ne montrer que les approbations pour les demandes créées avant %1"
 msgid "Only show custom fields for:"
 msgstr "Ne montrer que les champs personnalisés pour :"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -6049,7 +6049,7 @@ msgstr "Ordre de recherche des bibliothèques Perl"
 msgid "Permanently wipeout data from RT"
 msgstr "Supprimer définitivement des données de RT"
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Accès refusé"
 
@@ -6460,7 +6460,7 @@ msgstr "RT/Admin/Edit le groupe %1"
 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:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -6589,7 +6589,7 @@ msgstr "Actualiser la recherche toutes les 60 minutes."
 msgid "Refresh this page every %1 minutes."
 msgstr "Actualiser cette page toutes les %1 minute(s)."
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -6732,7 +6732,7 @@ msgstr "Réinitialiser avec les valeurs par défaut"
 msgid "Residence"
 msgstr "Domicile"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Résoudre"
 
@@ -6954,11 +6954,11 @@ msgstr "Rechercher des articles"
 msgid "Search Preferences"
 msgstr "Préférences de recherche"
 
-#: share/html/SelfService/Article/Search.html:53
+#: NOT FOUND IN SOURCE
 msgid "Search for Articles articles matching"
 msgstr "Rechercher des articles d'articles correspondant"
 
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr "Rechercher les articles correspondant"
 
@@ -7016,10 +7016,14 @@ msgstr "Sécurité :"
 msgid "See also:"
 msgstr "Voir également:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr "Voir les articles de cette classe"
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom field values"
 msgstr "Afficher les valeurs de champ personnalisé"
@@ -7576,7 +7580,7 @@ msgstr "Tableur"
 msgid "Stage"
 msgstr "Étape"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -8100,7 +8104,7 @@ msgstr "Ces options de configurations concernent les éléments de base pour obt
 msgid "This Custom Field can not have list of values"
 msgstr "Ce genre personnalisé ne peut pas avoir de liste de valeurs"
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "Ce champ personnalisé ne s'applique pas à cet objet"
 
@@ -8466,7 +8470,7 @@ msgstr "Impossible de supprimer l'appartenance à la rubrique %1"
 msgid "Unable to determine object type or id"
 msgstr "Impossible de déterminer le type ou l'identifiant de l'objet"
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr "Impossible de charger l'article"
 
@@ -8508,12 +8512,12 @@ msgstr "Impossible de s'abonner au tableau de bord %1: permissions refusée"
 msgid "Unable to unsubscribe to dashboard %1"
 msgstr "Impossible de s'abonner au tableau de bord %1"
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -9145,7 +9149,7 @@ msgstr "Vous êtes sur le point de chiffrer les messages courriels sortants, mai
 msgid "You are not an authorized user"
 msgstr "Vous n'êtes pas un utilisateur autorisé"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr "Vous pouvez <a href=\"%1\">aller au premier message non-lu</a> ou <a href=\"%2\">aller au premier message non-lu et marquer tous les messages comme lus</a>."
diff --git a/share/po/he.po b/share/po/he.po
index 6667077..1e2ccfd 100644
--- a/share/po/he.po
+++ b/share/po/he.po
@@ -101,7 +101,7 @@ msgstr "%1 %2 נשמר."
 msgid "%1 %2 updated."
 msgstr "%1 %2  עודכן."
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -232,7 +232,7 @@ msgstr "%1 שונה מ%2 ל%3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr ""
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr ""
@@ -456,7 +456,7 @@ msgstr ""
 msgid "'%1' is an invalid value for status"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1361,11 +1361,11 @@ msgstr ""
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -1888,7 +1888,7 @@ msgstr ""
 msgid "Create a CustomField for queue %1"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr ""
 
@@ -2362,7 +2362,7 @@ msgstr ""
 msgid "Delegation"
 msgstr "דלגציות"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "מחק"
 
@@ -3677,7 +3677,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr ""
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -4337,7 +4337,7 @@ msgstr ""
 msgid "Modify a scrip that applies to all queues"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -4954,7 +4954,7 @@ msgstr ""
 msgid "No permission to set preferences"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -5297,7 +5297,7 @@ msgstr ""
 msgid "Open"
 msgstr "פתוח"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -5517,7 +5517,7 @@ msgstr ""
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr ""
 
@@ -5880,7 +5880,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -6013,7 +6013,7 @@ msgstr ""
 msgid "Refresh this page every %1 minutes."
 msgstr "רענן דף זה כל %1 דקות."
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -6152,7 +6152,7 @@ msgstr ""
 msgid "Residence"
 msgstr "בית"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "פתור"
 
@@ -6362,11 +6362,7 @@ msgstr ""
 msgid "Search Preferences"
 msgstr ""
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -6420,10 +6416,14 @@ msgstr ""
 msgid "See also:"
 msgstr ""
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: lib/RT/Class.pm:88
 msgid "See that this class exists"
 msgstr ""
@@ -6920,7 +6920,7 @@ msgstr ""
 msgid "Stage"
 msgstr ""
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -7416,7 +7416,7 @@ msgstr ""
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr ""
 
@@ -7798,7 +7798,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr ""
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -7832,12 +7832,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr ""
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -8453,7 +8453,7 @@ msgstr ""
 msgid "You are not an authorized user"
 msgstr "אינך משתמש מורשה"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr ""
diff --git a/share/po/hr.po b/share/po/hr.po
index 4a8caf1..5bcd348 100644
--- a/share/po/hr.po
+++ b/share/po/hr.po
@@ -113,7 +113,7 @@ msgstr "%1 %2 spremljeno."
 msgid "%1 %2 updated."
 msgstr "%1 %2 ažurirano"
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -256,7 +256,7 @@ msgstr "%1 promijenjeno iz %2 u %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr ""
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%1 graf po atributu %2"
@@ -500,7 +500,7 @@ msgstr "%quant(%1,sat)"
 msgid "'%1' is an invalid value for status"
 msgstr "'%1' nije valjana vrijednost za status"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1593,11 +1593,11 @@ msgstr ""
 msgid "Class is"
 msgstr "Klasa je"
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -2180,7 +2180,7 @@ msgstr "Napravi vlastito polje za kategoriju %1"
 msgid "Create a CustomField which applies to all queues"
 msgstr "Napravi vlastito polje primjenjivo na sve kategorije"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr "Napravi novi članak"
 
@@ -2722,7 +2722,7 @@ msgstr "Prijenos ovlasti"
 msgid "Delegation"
 msgstr "Prijenos ovlasti"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Obriši"
 
@@ -4261,7 +4261,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "Nevažeća vrsta grupe"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -5021,7 +5021,7 @@ msgstr "Promijeni natuknice koje se primjenjuju na sve kategorije"
 msgid "Modify a scrip which applies to all queues"
 msgstr "Promijeni natuknice koji se primjenjuje na sve kategorije"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr "Promijeni članak #%1"
@@ -5718,7 +5718,7 @@ msgstr "Nemate ovlasti za spremanje pretraga sustava"
 msgid "No permission to set preferences"
 msgstr "Nemate ovlasti za izmjenu postavki"
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -6093,7 +6093,7 @@ msgstr "Prikaži samo vlastita polja za:"
 msgid "Open"
 msgstr "Otvoreno"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -6333,7 +6333,7 @@ msgstr "Redoslijed pretraživanja Perl biblioteka"
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Nije dozvoljeno"
 
@@ -6756,7 +6756,7 @@ msgstr "Postavka RTAddressRegexp iz konfiguracije ne odgovara %1"
 msgid "RTFM Error"
 msgstr "RTFM greška"
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -6889,7 +6889,7 @@ msgstr "Osvježi rezultate pretraživanja svakih 60 minuta."
 msgid "Refresh this page every %1 minutes."
 msgstr "Osvježi stranicu svakih %1 minuta."
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -7028,7 +7028,7 @@ msgstr "Vrati na standardne postavke"
 msgid "Residence"
 msgstr "Kuća"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Riješi"
 
@@ -7278,11 +7278,7 @@ msgstr ""
 msgid "Search Preferences"
 msgstr "Postavke pretraživanja"
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -7340,10 +7336,14 @@ msgstr "Sigurnost:"
 msgid "See also:"
 msgstr "Također vidi:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom field values"
 msgstr "Pogledaj vrijednosti vlastitog polja"
@@ -7960,7 +7960,7 @@ msgstr "Preuzmi tablicu"
 msgid "Stage"
 msgstr "Stadij"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -8516,7 +8516,7 @@ msgstr "Slijedeće postavke potrebno je definirati da bi RT radio. Treba zadati
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "Ovo vlastito polje se ne primjenjuje za taj objekt"
 
@@ -8938,7 +8938,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr "Određivanje tipa ili identifikatora objekta nije moguće"
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr "Članak nije moguće učitati"
 
@@ -8972,12 +8972,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr "Pretplata na kontrolnu ploču %1 nije uspjela: Nije dozvoljeno"
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -9669,7 +9669,7 @@ msgstr "Poslat ćete kriptirane poruke, ali sa javnim ključem primatelja ima pr
 msgid "You are not an authorized user"
 msgstr "Niste ovlašteni korisnik"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr "Možete <a href=\"%1\">skočiti na prvu nepročitanu poruku</a> ili <a href=\"%2\">skočiti na prvu nepročitanu poruku i označiti sve poruke kao pročitane</a>."
diff --git a/share/po/hu.po b/share/po/hu.po
index ee3468e..564e5a7 100644
--- a/share/po/hu.po
+++ b/share/po/hu.po
@@ -105,7 +105,7 @@ msgstr "%1 %2 mentve."
 msgid "%1 %2 updated."
 msgstr "%1 %2 frissítve."
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -240,7 +240,7 @@ msgstr "%1 változtatása: '%2' --> '%3'"
 msgid "%1 changed from '%2' to '%3'"
 msgstr ""
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr ""
@@ -464,7 +464,7 @@ msgstr ""
 msgid "'%1' is an invalid value for status"
 msgstr "'%1' nem lehet státusz érték"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1409,11 +1409,11 @@ msgstr ""
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -1964,7 +1964,7 @@ msgstr "Hozzon létre egy új egyéni mezõt!"
 msgid "Create a CustomField for queue %1"
 msgstr "Hozzon létre egy egyéni mezõt a(z) %1 sorhoz"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr ""
 
@@ -2438,7 +2438,7 @@ msgstr "Jogok továbbadása"
 msgid "Delegation"
 msgstr "Jogok továbbadása"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Töröl"
 
@@ -3818,7 +3818,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "Érvénytelen csoportfajta"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -4498,7 +4498,7 @@ msgstr ""
 msgid "Modify a scrip that applies to all queues"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -5143,7 +5143,7 @@ msgstr ""
 msgid "No permission to set preferences"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -5482,7 +5482,7 @@ msgstr ""
 msgid "Open"
 msgstr "Nyitott"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -5698,7 +5698,7 @@ msgstr ""
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Hozzáférés visszautasítva"
 
@@ -6073,7 +6073,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -6198,7 +6198,7 @@ msgstr ""
 msgid "Refresh this page every %1 minutes."
 msgstr "%1 percenként frissítse ezt az oldalt."
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -6329,7 +6329,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Otthoni"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Megold"
 
@@ -6559,11 +6559,7 @@ msgstr ""
 msgid "Search Preferences"
 msgstr "Keresési beállítások"
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -6621,10 +6617,14 @@ msgstr "Biztonság:"
 msgid "See also:"
 msgstr "Lásd még:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom fields"
 msgstr "Eyéni mezõk"
@@ -7177,7 +7177,7 @@ msgstr ""
 msgid "Stage"
 msgstr ""
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -7697,7 +7697,7 @@ msgstr ""
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr ""
 
@@ -8055,7 +8055,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr ""
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -8089,12 +8089,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr ""
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -8694,7 +8694,7 @@ msgstr ""
 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption."
 msgstr ""
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr ""
diff --git a/share/po/id.po b/share/po/id.po
index 5d5a658..8397fb0 100644
--- a/share/po/id.po
+++ b/share/po/id.po
@@ -110,7 +110,7 @@ msgstr ""
 msgid "%1 %2 updated."
 msgstr ""
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -241,7 +241,7 @@ msgstr "%1 sudah diganti dari %2 ke %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr ""
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr ""
@@ -477,7 +477,7 @@ msgstr ""
 msgid "'%1' is an invalid value for status"
 msgstr "'%1' adalah nilai yang tidak valid untuk status"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1498,11 +1498,11 @@ msgstr ""
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -2069,7 +2069,7 @@ msgstr "Buat Kolom Kustom"
 msgid "Create a CustomField for queue %1"
 msgstr "Buat Kolom Kustom untuk antrian %1"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr ""
 
@@ -2559,7 +2559,7 @@ msgstr "Hak-hak Utusan"
 msgid "Delegation"
 msgstr "Delegasi"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Hapus"
 
@@ -4010,7 +4010,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "Tipe Grup tidak valid"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -4730,7 +4730,7 @@ msgstr "Mengubah scrip untuk antrian %1"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Mengubah scrip  yang dapat digunakan di seluruh antrian"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -5391,7 +5391,7 @@ msgstr ""
 msgid "No permission to set preferences"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -5758,7 +5758,7 @@ msgstr ""
 msgid "Open"
 msgstr "Buka"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -5998,7 +5998,7 @@ msgstr ""
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Izin ditolak"
 
@@ -6377,7 +6377,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -6510,7 +6510,7 @@ msgstr ""
 msgid "Refresh this page every %1 minutes."
 msgstr "Refresh halaman ini setiap %1 menit."
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -6641,7 +6641,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Tempat Tinggal"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Penyelesaian"
 
@@ -6879,11 +6879,7 @@ msgstr ""
 msgid "Search attribute load failure"
 msgstr "Gagal memanggil atribut pencarian"
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -6945,10 +6941,14 @@ msgstr "Keamanan:"
 msgid "See also:"
 msgstr ""
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom fields"
 msgstr "Lihat kolom kustom"
@@ -7497,7 +7497,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Tingkat"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -8025,7 +8025,7 @@ msgstr ""
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "Kolom kustom ini tidak dapat digunakan pada objek tersebut"
 
@@ -8403,7 +8403,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr ""
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -8437,12 +8437,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr ""
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -9098,7 +9098,7 @@ msgstr ""
 msgid "You are not an authorized user"
 msgstr "Anda bukanlah pengguna yang sah"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr ""
diff --git a/share/po/is.po b/share/po/is.po
index 4fae037..1f03018 100644
--- a/share/po/is.po
+++ b/share/po/is.po
@@ -105,7 +105,7 @@ msgstr "%1 %2 vistað."
 msgid "%1 %2 updated."
 msgstr "%1 %2 uppfært."
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -232,7 +232,7 @@ msgstr "%1 breyttist úr %2 í %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr ""
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%1 línurit eftir %2"
@@ -448,7 +448,7 @@ msgstr ""
 msgid "'%1' is an invalid value for status"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1337,11 +1337,11 @@ msgstr ""
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -1864,7 +1864,7 @@ msgstr ""
 msgid "Create a CustomField for queue %1"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr ""
 
@@ -2314,7 +2314,7 @@ msgstr ""
 msgid "DefaultFormat"
 msgstr ""
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Eyða"
 
@@ -3613,7 +3613,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr ""
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -4233,7 +4233,7 @@ msgstr ""
 msgid "Modify a scrip that applies to all queues"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -4814,7 +4814,7 @@ msgstr ""
 msgid "No permission to set preferences"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -5133,7 +5133,7 @@ msgstr ""
 msgid "Only show custom fields for:"
 msgstr ""
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -5337,7 +5337,7 @@ msgstr ""
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Heimild ekki veitt"
 
@@ -5684,7 +5684,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -5809,7 +5809,7 @@ msgstr ""
 msgid "Refresh this page every %1 minutes."
 msgstr ""
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -5944,7 +5944,7 @@ msgstr ""
 msgid "Residence"
 msgstr ""
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Leysa"
 
@@ -6158,11 +6158,7 @@ msgstr ""
 msgid "Search Preferences"
 msgstr "Leitarstillingar"
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -6220,10 +6216,14 @@ msgstr "Öryggi:"
 msgid "See also:"
 msgstr "Sjá einnig:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: lib/RT/Class.pm:88
 msgid "See that this class exists"
 msgstr ""
@@ -6712,7 +6712,7 @@ msgstr "Töflureiknir"
 msgid "Stage"
 msgstr "Þrep"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -7192,7 +7192,7 @@ msgstr ""
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr ""
 
@@ -7546,7 +7546,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr ""
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -7580,12 +7580,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr ""
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -8161,7 +8161,7 @@ msgstr ""
 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption."
 msgstr ""
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr ""
diff --git a/share/po/it.po b/share/po/it.po
index 3c67f10..fbb68b1 100644
--- a/share/po/it.po
+++ b/share/po/it.po
@@ -129,7 +129,7 @@ msgstr "%1 %2 salvato."
 msgid "%1 %2 updated."
 msgstr "aggiornato %1 %2."
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -288,7 +288,7 @@ msgstr "%1 cambiato da %2 a %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr ""
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "grafico %1 ordinato per %2"
@@ -544,7 +544,7 @@ msgstr "%1 ore"
 msgid "'%1' is an invalid value for status"
 msgstr "'%1' è uno stato non valido"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1709,11 +1709,11 @@ msgstr ""
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -2396,7 +2396,7 @@ msgstr "Crea un campo personalizzato valido per tutte le code"
 msgid "Create a new Custom Field"
 msgstr "Crea un nuovo campo personalizzato"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr ""
 
@@ -2990,7 +2990,7 @@ msgstr "DelegaDiritti"
 msgid "Delegation"
 msgstr "Delega"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Cancella"
 
@@ -4617,7 +4617,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "Tipo di gruppo non valido"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -5421,7 +5421,7 @@ msgstr "Modifica uno Scrip che riguarda tutte le code"
 msgid "Modify a scrip which applies to all queues"
 msgstr "Modifica uno scrip valido per tutte le code"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -6146,7 +6146,7 @@ msgstr "Manca il permesso per salvare ricerche a livello di sistema"
 msgid "No permission to set preferences"
 msgstr "Non autorizzato a impostare le preferenze"
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -6541,7 +6541,7 @@ msgstr "Mostra campi personalizzati solo per:"
 msgid "Open"
 msgstr "Aperto"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -6793,7 +6793,7 @@ msgstr "Ordine di ricerca delle librerie Perl"
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Operazione non consentita"
 
@@ -7300,7 +7300,7 @@ msgstr "RT/Admin/Modifica il gruppo %1"
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr "L'opzione RTAddressRegexp nella configurazione non corrisponde a %1"
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -7437,7 +7437,7 @@ msgstr "Rinfresca il risultato della ricerca ogni 60 minuti."
 msgid "Refresh this page every %1 minutes."
 msgstr "Aggiorna questa pagina ogni %1 minuti."
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -7580,7 +7580,7 @@ msgstr "Reimposta ai valori di default"
 msgid "Residence"
 msgstr "Casa"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Risolvi"
 
@@ -7850,11 +7850,7 @@ msgstr "Preferenze per la ricerca"
 msgid "Search attribute load failure"
 msgstr "Errore nel caricamento degli attributi della ricerca"
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -7916,10 +7912,14 @@ msgstr "Protezione:"
 msgid "See also:"
 msgstr "Vedi anche:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom field values"
 msgstr "Vedi i valori per i campi personalizzati"
@@ -8524,7 +8524,7 @@ msgstr "Foglio di calcolo"
 msgid "Stage"
 msgstr "Tappa"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -9120,7 +9120,7 @@ msgstr "Le seguenti opzioni di configurazione sono il minimo necessario per cons
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "L'oggetto non ammette questo campo personalizzato"
 
@@ -9566,7 +9566,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr "Impossibile determinare il tipo o l'id dell'oggetto"
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -9600,12 +9600,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr "Impossibile abbonarsi al cruscotto %1: permesso negato"
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -10317,7 +10317,7 @@ msgstr "E' stato scelto di crittografare i messaggi email in uscita, ma ci sono
 msgid "You are not an authorized user"
 msgstr "Non sei un utente autorizzato"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr "Puoi <a href=\"%1\">andare al primo messaggio non letto</a> oppure <a href=\"%2\">andare al primo messaggio non letto e marcare tutti i messaggi come visti</a>."
diff --git a/share/po/ja.po b/share/po/ja.po
index cd23c81..2bf7028 100644
--- a/share/po/ja.po
+++ b/share/po/ja.po
@@ -135,7 +135,7 @@ msgstr "%1の%2を保存しました"
 msgid "%1 %2 updated."
 msgstr "%1「%2」を更新しました"
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -274,7 +274,7 @@ msgstr "%1は「%2」から「%3」に変更されました"
 msgid "%1 changed from '%2' to '%3'"
 msgstr "%1は「%2」から「%3」に変更されました"
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%2の%1グラフで表示"
@@ -502,7 +502,7 @@ msgstr "%1時間"
 msgid "'%1' is an invalid value for status"
 msgstr "%1'は無効なステータスです"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr "「%1」は無効なクラス名です"
@@ -1443,11 +1443,11 @@ msgstr ""
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -1986,7 +1986,7 @@ msgstr "カスタムフィールドの作成"
 msgid "Create a CustomField for queue %1"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr "記事の作成"
 
@@ -2452,7 +2452,7 @@ msgstr "権限の設定"
 msgid "Delegation"
 msgstr "権限委譲"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "削除"
 
@@ -3795,7 +3795,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "無効なグループタイプです"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -4463,7 +4463,7 @@ msgstr ""
 msgid "Modify a scrip that applies to all queues"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr "記事「%1」を更新"
@@ -5076,7 +5076,7 @@ msgstr ""
 msgid "No permission to set preferences"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr "記事を表示する許可がされていません"
 
@@ -5419,7 +5419,7 @@ msgstr "この日よりも前に作成された承認のみ表示 %1"
 msgid "Only show custom fields for:"
 msgstr ""
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -5631,7 +5631,7 @@ msgstr ""
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "許可が下りませんでした"
 
@@ -6006,7 +6006,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -6135,7 +6135,7 @@ msgstr ""
 msgid "Refresh this page every %1 minutes."
 msgstr "ページを%1分おきに更新する"
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -6266,7 +6266,7 @@ msgstr "デフォルトの設定に戻す"
 msgid "Residence"
 msgstr "住所"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "解決済みにする"
 
@@ -6492,11 +6492,7 @@ msgstr ""
 msgid "Search Preferences"
 msgstr "検索設定"
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -6554,10 +6550,14 @@ msgstr ""
 msgid "See also:"
 msgstr ""
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: lib/RT/Class.pm:88
 msgid "See that this class exists"
 msgstr ""
@@ -7062,7 +7062,7 @@ msgstr "表形式"
 msgid "Stage"
 msgstr ""
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -7562,7 +7562,7 @@ msgstr ""
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr ""
 
@@ -7920,7 +7920,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr ""
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr "記事が見つかりません"
 
@@ -7954,12 +7954,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr "ダッシュボード「%1」に予約購読をできませんでした: 許可が下りませんでした"
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -8547,7 +8547,7 @@ msgstr ""
 msgid "You are not an authorized user"
 msgstr "認証されていません"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr ""
diff --git a/share/po/lt.po b/share/po/lt.po
index c586138..7bbd0bc 100644
--- a/share/po/lt.po
+++ b/share/po/lt.po
@@ -112,7 +112,7 @@ msgstr "%1 %2 išsaugotas."
 msgid "%1 %2 updated."
 msgstr "%1 %2 atnaujinta."
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -251,7 +251,7 @@ msgstr "%1 pakeitas iš %2 į %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr "%1 pakeista iš '%2' į '%3'"
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%1 grafikas pagal %2"
@@ -475,7 +475,7 @@ msgstr "%quant(%1, valanda,valandos,valandų)"
 msgid "'%1' is an invalid value for status"
 msgstr "'%1' yra neteisinga būsenos reikšmė"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr "'%1' nÄ—ra tesingas klasÄ—s identifikatorius"
@@ -1441,11 +1441,11 @@ msgstr "KlasÄ—s vardas"
 msgid "Class id"
 msgstr "KlasÄ—s identifikatorius"
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr "KlasÄ— jau pritaikyta globaliai"
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr "KlasÄ— jau pritaikyta %1"
@@ -1996,7 +1996,7 @@ msgstr "Sukurti papildomÄ… laukÄ…"
 msgid "Create a CustomField for queue %1"
 msgstr "Sukurti papildomÄ… laukÄ… eilei %1"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr "Sukurti naują straipsnį"
 
@@ -2502,7 +2502,7 @@ msgstr "Deleguoti teises"
 msgid "Delegation"
 msgstr "Teisių delegavimas"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Panaikinti"
 
@@ -3921,7 +3921,7 @@ msgstr "Netesingas papildomo lauko reikšmės šaltinis"
 msgid "Invalid Group Type"
 msgstr "Neleistinas grupÄ—s tipas"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr "Neteisinga eilÄ—, nepavyksta pritaikyti klasÄ—s: %1"
@@ -4621,7 +4621,7 @@ msgstr "Pakeisti skriptÄ… eilei %1"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Pakeisti skriptÄ…, kuris taikomas visoms eilÄ—ms"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr "Keisti straipsnį #%1"
@@ -5274,7 +5274,7 @@ msgstr "Nėra globalių paieškų išaugojimo teisių"
 msgid "No permission to set preferences"
 msgstr "Nėra teisių keisti nustatymus"
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr "Neužtenka teisių pamatyti straipsnį"
 
@@ -5625,7 +5625,7 @@ msgstr "Rodyti patvirtinimus prašymams, sukurtiems iki %1"
 msgid "Only show custom fields for:"
 msgstr "Papildomus laukus rodyti tik:"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -5845,7 +5845,7 @@ msgstr "Perl bibliotekos paieškos tvarka"
 msgid "Permanently wipeout data from RT"
 msgstr "Negrįžtamai panaikinti RT duomenis"
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Neturite teisÄ—s"
 
@@ -6244,7 +6244,7 @@ msgstr "RT tvarkyti grupÄ™  %1"
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr "RTAddressRegexp nustatymas konfigūracijoje neatitinka %1"
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -6373,7 +6373,7 @@ msgstr "Atnaujinti paieškos rezultatus kas 60 minučių."
 msgid "Refresh this page every %1 minutes."
 msgstr "Automatiškai atnaujinti šį puslapį kas %1 minučių."
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -6516,7 +6516,7 @@ msgstr "Atstatyti standartinius"
 msgid "Residence"
 msgstr "Namų"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Išspręsti"
 
@@ -6738,11 +6738,11 @@ msgstr "Ieškoti straipsnių"
 msgid "Search Preferences"
 msgstr "Paieškos nustatymai"
 
-#: share/html/SelfService/Article/Search.html:53
+#: NOT FOUND IN SOURCE
 msgid "Search for Articles articles matching"
 msgstr "Ieškoti straipsnių, atitinkančių"
 
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr "Ieškoti atitinkančių straipsnių"
 
@@ -6804,10 +6804,14 @@ msgstr "Saugumas:"
 msgid "See also:"
 msgstr "Žr. taip pat:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr "Peržiūtrėti straipsnius šioje klasėje"
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom fields"
 msgstr "Peržiūrėti papildomus laukus"
@@ -7356,7 +7360,7 @@ msgstr "Excel failas"
 msgid "Stage"
 msgstr "Stadija"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -7868,7 +7872,7 @@ msgstr "These configuration options cover some of the basics needed to get RT up
 msgid "This Custom Field can not have list of values"
 msgstr "Šis papildomas laukas negali turėti reikšmių sąrašo"
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "Å is papildomas laukas netaikomas Å¡iam objektui"
 
@@ -8226,7 +8230,7 @@ msgstr "Nepavyksta panaikinti narystÄ—s temoje %1"
 msgid "Unable to determine object type or id"
 msgstr "Neįmanoma nustatyti objekto ar identifikatoriaus tipą"
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr "Nepavyksta nuskaityti staripsnio"
 
@@ -8264,12 +8268,12 @@ msgstr "Nepavyksta nustatyti privatumo objekto: %1"
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr "Negalima užprenumeruoti informacinės panelės %1: Priega nesuteikta"
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -8881,7 +8885,7 @@ msgstr "You are going to encrypt outgoing email messages, but there is a problem
 msgid "You are not an authorized user"
 msgstr "Jūs esate neprisiregistravęs"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr "Galite <a href=\"%1\">pereiti prie pirmo neskaityto pranešimo</a> arba <a href=\"%2\">pereiti prie pirmo neskaityto pranešimo ir pažymėti visus pranešimus skaitytais</a>."
diff --git a/share/po/lv.po b/share/po/lv.po
index 95b707b..8229bf6 100644
--- a/share/po/lv.po
+++ b/share/po/lv.po
@@ -114,7 +114,7 @@ msgstr "%1 %2 saglabāts."
 msgid "%1 %2 updated."
 msgstr "%1 %2 atjaunots"
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -253,7 +253,7 @@ msgstr "%1 mainīts not %2 uz %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr ""
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%1 tabula no %2"
@@ -477,7 +477,7 @@ msgstr "%quant(%1,stunda)"
 msgid "'%1' is an invalid value for status"
 msgstr "'%1' ir nepareiza vērtība statusam"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1434,11 +1434,11 @@ msgstr ""
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -1989,7 +1989,7 @@ msgstr "Izveidot CustomField"
 msgid "Create a CustomField for queue %1"
 msgstr "Izveidot CustomField rindai %1"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr ""
 
@@ -2495,7 +2495,7 @@ msgstr "DelegateRights"
 msgid "Delegation"
 msgstr "Deleģēšana"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Dzēst"
 
@@ -3886,7 +3886,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "Nepareizs grupas tips"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -4558,7 +4558,7 @@ msgstr "Labot Å¡ablonus Å¡im uzdevumam %1"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Labot skripus visiem uzdevumiem"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -5195,7 +5195,7 @@ msgstr "Nav tiesību saglabāt meklēšanas kritērijus"
 msgid "No permission to set preferences"
 msgstr "Nav tiesību saglabāt uzstādījumus"
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -5526,7 +5526,7 @@ msgstr "Rādīt pieprasījumu apstiprinājumus, veidotus pirms %1"
 msgid "Only show custom fields for:"
 msgstr "Rādīt laukus tikai:"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -5738,7 +5738,7 @@ msgstr ""
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Atļauja liegta"
 
@@ -6109,7 +6109,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -6234,7 +6234,7 @@ msgstr "Atjaunot meklēšanas rezultātus katras 60 minūtes."
 msgid "Refresh this page every %1 minutes."
 msgstr "Atjaunot šo lapu katras %1 minūtes."
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -6369,7 +6369,7 @@ msgstr "Atstatīt uz noklusēto"
 msgid "Residence"
 msgstr "Uzturēšanās"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Atrisināt"
 
@@ -6591,11 +6591,7 @@ msgstr ""
 msgid "Search Preferences"
 msgstr "Meklēšanas iestatījumi"
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -6653,10 +6649,14 @@ msgstr "Drošība:"
 msgid "See also:"
 msgstr "Skatīt arī:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom field values"
 msgstr "Skatīt lauku vērtības"
@@ -7181,7 +7181,7 @@ msgstr "Tabullapa"
 msgid "Stage"
 msgstr ""
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -7689,7 +7689,7 @@ msgstr "Šīs konfigurācijas opcijas pārsedz pamatus, kuri nepieciešami li RT
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "šis lauks neuzliksies šajā objektā"
 
@@ -8047,7 +8047,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr "Nevar noteikt objekta tipu vai id"
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -8081,12 +8081,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr "Nevar parakstīties uz paneli %1: Pieeja liegta"
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -8690,7 +8690,7 @@ msgstr "Jūs gribat šifrēt izejošās vēstules, bet ir problēma ar saņēmē
 msgid "You are not an authorized user"
 msgstr "Jūs neesat autorizēts lietotājs"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr "Jūs varat <a href=\"%1\">iet uz pirmo nelasīto vēstuli</a> vai <a href=\"%2\">iet uz pirmo vēstuli un atzīmēt visas vēstules kā izlasītas</a>."
diff --git a/share/po/mk.po b/share/po/mk.po
index 09b9163..13e9903 100644
--- a/share/po/mk.po
+++ b/share/po/mk.po
@@ -101,7 +101,7 @@ msgstr "%1 %2 зачувано."
 msgid "%1 %2 updated."
 msgstr "%1 %2 ажурирано"
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -228,7 +228,7 @@ msgstr "%1 сменето од %2 во %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr "%1 сменето од '%2' vo '%3'"
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr ""
@@ -440,7 +440,7 @@ msgstr "%quant(%1,саат)"
 msgid "'%1' is an invalid value for status"
 msgstr "'%1' е невалидна вредност за статусот"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr "'%1' не е валиден идентификатор на класа"
@@ -1317,11 +1317,11 @@ msgstr "Име на класа"
 msgid "Class id"
 msgstr "id на класа"
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr "Класата е веќе применета глобално"
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr "Класата е веќе применета во %1"
@@ -1840,7 +1840,7 @@ msgstr ""
 msgid "Create a CustomField for queue %1"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr "Креирај нов артикал"
 
@@ -2274,7 +2274,7 @@ msgstr "Стандарден: %1/%2 сменет од %3 во %4"
 msgid "DefaultFormat"
 msgstr "СтандарденФормат"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Избриши"
 
@@ -3557,7 +3557,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr ""
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -4173,7 +4173,7 @@ msgstr ""
 msgid "Modify a scrip that applies to all queues"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -4742,7 +4742,7 @@ msgstr ""
 msgid "No permission to set preferences"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -5061,7 +5061,7 @@ msgstr ""
 msgid "Only show custom fields for:"
 msgstr ""
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -5265,7 +5265,7 @@ msgstr ""
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr ""
 
@@ -5612,7 +5612,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -5737,7 +5737,7 @@ msgstr ""
 msgid "Refresh this page every %1 minutes."
 msgstr ""
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -5864,7 +5864,7 @@ msgstr ""
 msgid "Residence"
 msgstr ""
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr ""
 
@@ -6058,11 +6058,7 @@ msgstr ""
 msgid "Search Preferences"
 msgstr ""
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -6116,10 +6112,14 @@ msgstr ""
 msgid "See also:"
 msgstr ""
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: lib/RT/Class.pm:88
 msgid "See that this class exists"
 msgstr ""
@@ -6600,7 +6600,7 @@ msgstr ""
 msgid "Stage"
 msgstr ""
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -7076,7 +7076,7 @@ msgstr ""
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr ""
 
@@ -7410,7 +7410,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr ""
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -7444,12 +7444,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr ""
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -8025,7 +8025,7 @@ msgstr ""
 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption."
 msgstr ""
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr ""
diff --git a/share/po/nb.po b/share/po/nb.po
index ec5a9f7..8c4149a 100644
--- a/share/po/nb.po
+++ b/share/po/nb.po
@@ -126,7 +126,7 @@ msgstr "%1 %2 lagret"
 msgid "%1 %2 updated."
 msgstr "%1 «%2» oppdatert"
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -286,7 +286,7 @@ msgid "%1 changed from '%2' to '%3'"
 msgstr ""
 
 # Har ikke suffikset -diagram, da dette er flyttet til %1-tekstene (for eksempel «Stolpediagram» i stedet for «Stolpe»).
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%1 av %2"
@@ -546,7 +546,7 @@ msgstr "%quant(%1,time,timer)"
 msgid "'%1' is an invalid value for status"
 msgstr "«%1» er en ugyldig statusverdi"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1750,11 +1750,11 @@ msgstr ""
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -2429,7 +2429,7 @@ msgstr "Opprett et fleksifelt for alle køer"
 msgid "Create a new Custom Field"
 msgstr "Opprett et nytt fleksifelt"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr ""
 
@@ -3019,7 +3019,7 @@ msgstr "DelegerRettigheter"
 msgid "Delegation"
 msgstr "Delegering"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Slett"
 
@@ -4598,7 +4598,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "Ugyldig gruppetype"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -5378,7 +5378,7 @@ msgstr "Endre utløser for køen %1"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Endre utløser som gjelder alle køer"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -6095,7 +6095,7 @@ msgstr "Mangler tilgang til å kjøre globale søk"
 msgid "No permission to set preferences"
 msgstr "Mangler tilgang til å endre innstillingene"
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -6478,7 +6478,7 @@ msgstr "Vis bare fleksifelt for:"
 msgid "Open"
 msgstr "Ã…pne"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -6726,7 +6726,7 @@ msgstr "Søkerekkefølge for Perl-bibliotek"
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Nektet tilgang"
 
@@ -7246,7 +7246,7 @@ msgstr "RT / Admin / Rediger gruppa %1"
 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:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -7384,7 +7384,7 @@ msgstr "Oppdater søkeresultatene hvert 60. minutt"
 msgid "Refresh this page every %1 minutes."
 msgstr "Oppdater siden hvert %1. minutt"
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -7531,7 +7531,7 @@ msgstr "Tilbakestill til standard"
 msgid "Residence"
 msgstr "Hjemme"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Løs"
 
@@ -7793,11 +7793,7 @@ msgstr "Søkekriteria"
 msgid "Search Preferences"
 msgstr "Søkeinnstillinger"
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -7855,10 +7851,14 @@ msgstr "Sikkerhet:"
 msgid "See also:"
 msgstr "Se også:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom field values"
 msgstr "Se fleksifeltverdier"
@@ -8455,7 +8455,7 @@ msgstr "Regneark"
 msgid "Stage"
 msgstr "Nivå"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -9052,7 +9052,7 @@ msgstr "Disse innstillingene dekker det nødvendige for å sette RT i drift. Du
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "Fleksifeltet hører ikke til under dette objektet"
 
@@ -9502,7 +9502,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr "Klarte ikke fastsette type eller ID til objekt"
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -9536,12 +9536,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr "Klarte ikke abonnere på utforminga %1: nektet tilgang"
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -10237,7 +10237,7 @@ msgstr "Du er i ferd med å kryptere utgående meldinger, men det er feil med of
 msgid "You are not an authorized user"
 msgstr "Du er ikke en godkjent bruker"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr "Du kan <a href=\"%1\">hoppe til den første uleste meldinga</a>, eller <a href=\"%2\">hoppe til den første uleste meldinga og merke alle meldingene som leste</a>."
diff --git a/share/po/nl.po b/share/po/nl.po
index 02622f5..36110d3 100644
--- a/share/po/nl.po
+++ b/share/po/nl.po
@@ -113,7 +113,7 @@ msgstr "%1 %2 bewaard"
 msgid "%1 %2 updated."
 msgstr "%1 %2 geupdate"
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -264,7 +264,7 @@ msgstr "%1 veranderd van %2 naar %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr "%1 veranded van '%2' naar '%3'"
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%1 gesorteerd op %2"
@@ -516,7 +516,7 @@ msgstr ""
 msgid "'%1' is an invalid value for status"
 msgstr "'%1 is een ongeldige waarde voor status"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1633,11 +1633,11 @@ msgstr ""
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -2288,7 +2288,7 @@ msgstr ""
 msgid "Create a new Custom Field"
 msgstr "Creëer een niuew Specifiek Veld"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr ""
 
@@ -2826,7 +2826,7 @@ msgstr "DelegeerRechten"
 msgid "Delegation"
 msgstr "Delegeren"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Verwijderen"
 
@@ -4297,7 +4297,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "Ongeldig Groep Type"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -5045,7 +5045,7 @@ msgstr "Wijzig een scrip voor deze queue %1"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Wijzig een scrip die betrekking heeft op alle queues"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -5734,7 +5734,7 @@ msgstr ""
 msgid "No permission to set preferences"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -6101,7 +6101,7 @@ msgstr "Toon alleen de custom fields voor:"
 msgid "Open"
 msgstr "Open"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -6341,7 +6341,7 @@ msgstr ""
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Toestemming Geweigerd"
 
@@ -6820,7 +6820,7 @@ msgstr "RT's email commando modus vereist PGP authenticatie.  Of u heeft uw beri
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -6957,7 +6957,7 @@ msgstr ""
 msgid "Refresh this page every %1 minutes."
 msgstr "Ververs deze pagina elke %1 minuten."
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -7096,7 +7096,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Woonplaats"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Los op"
 
@@ -7346,11 +7346,7 @@ msgstr "Zoek Criteria"
 msgid "Search Preferences"
 msgstr ""
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -7420,10 +7416,14 @@ msgstr ""
 msgid "See also: %1"
 msgstr "Bekijk ook: %1"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom fields"
 msgstr "Bekijk custom fields"
@@ -8000,7 +8000,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Stadium"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -8572,7 +8572,7 @@ msgstr ""
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "Dit custom field is niet van toepassing op dat object"
 
@@ -9002,7 +9002,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr ""
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -9036,12 +9036,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr ""
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -9721,7 +9721,7 @@ msgstr ""
 msgid "You are not an authorized user"
 msgstr "U bent geen geauthorizeerde gebruiker"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr ""
diff --git a/share/po/nn.po b/share/po/nn.po
index e2af4d3..f5bfe74 100644
--- a/share/po/nn.po
+++ b/share/po/nn.po
@@ -111,7 +111,7 @@ msgstr "%1 %2 lagra"
 msgid "%1 %2 updated."
 msgstr "%1 «%2» oppdatert"
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -247,7 +247,7 @@ msgid "%1 changed from '%2' to '%3'"
 msgstr ""
 
 # Har ikke suffikset -diagram, da dette er flyttet til %1-tekstene (for eksempel «Stolpediagram» i stedet for «Stolpe»).
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%1 av %2"
@@ -471,7 +471,7 @@ msgstr "%quant(%1,time,timar)"
 msgid "'%1' is an invalid value for status"
 msgstr "«%1» er ein ugyldig statusverdi"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1435,11 +1435,11 @@ msgstr ""
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -1986,7 +1986,7 @@ msgstr "Nytt fleksifelt"
 msgid "Create a CustomField for queue %1"
 msgstr "Opprett fleksifelt for køen %1"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr ""
 
@@ -2506,7 +2506,7 @@ msgstr "DelegerLøyve"
 msgid "Delegation"
 msgstr "Delegering"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Slett"
 
@@ -3909,7 +3909,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "Ugyldig gruppetype"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -4597,7 +4597,7 @@ msgstr "Endra utløysar for køen %1"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Endra utløysar som gjeld alle køane"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -5242,7 +5242,7 @@ msgstr "Manglar løyve til å køyra globale søk"
 msgid "No permission to set preferences"
 msgstr "Manglar løyve til å endra innstillingane"
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -5586,7 +5586,7 @@ msgstr "Vis berre godkjenningar for saker oppretta før %1"
 msgid "Only show custom fields for:"
 msgstr "Vis berre fleksifelt for:"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -5806,7 +5806,7 @@ msgstr "Søkjerekkjefølgje for Perl-bibliotek"
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Nekta tilgang"
 
@@ -6195,7 +6195,7 @@ msgstr "RT / Admin / Rediger gruppa %1"
 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:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -6325,7 +6325,7 @@ msgstr "Oppdater søkjeresultata kvart 60. minutt"
 msgid "Refresh this page every %1 minutes."
 msgstr "Oppdater sida kvart %1. minutt"
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -6460,7 +6460,7 @@ msgstr "Tilbakestill til standard"
 msgid "Residence"
 msgstr "Heime"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Løys"
 
@@ -6682,11 +6682,7 @@ msgstr ""
 msgid "Search Preferences"
 msgstr "Søkjeinnstillingar"
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -6744,10 +6740,14 @@ msgstr "Tryggleik:"
 msgid "See also:"
 msgstr "Sjå òg:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom field values"
 msgstr "Sjå fleksifeltverdiar"
@@ -7284,7 +7284,7 @@ msgstr "Rekneark"
 msgid "Stage"
 msgstr "Nivå"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -7793,7 +7793,7 @@ msgstr "Desse innstillingane dekkjer det nødvendige for å setja RT i drift. Du
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "Fleksifeltet høyrer ikkje til under dette objektet"
 
@@ -8151,7 +8151,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr "Klarte ikkje fastsetja type eller ID til objekt"
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -8185,12 +8185,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr "Klarte ikkje abonnera på utforminga %1: nekta tilgang"
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -8794,7 +8794,7 @@ msgstr "Du er i ferd med å kryptera utgåande meldingar, men det er feil med of
 msgid "You are not an authorized user"
 msgstr "Du er ikkje ein godkjend brukar"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr "Du kan <a href=\"%1\">hoppa til den første ulesne meldinga</a>, eller <a href=\"%2\">hoppa til den første ulesne meldinga og merkja alle meldingane som lesne</a>."
diff --git a/share/po/pl.po b/share/po/pl.po
index 75c906c..a554868 100644
--- a/share/po/pl.po
+++ b/share/po/pl.po
@@ -114,7 +114,7 @@ msgstr "%1 %2 zapisano."
 msgid "%1 %2 updated."
 msgstr "%1 %2 zaktualizowano"
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -269,7 +269,7 @@ msgstr "%1 zmieniło się z %2 na %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr ""
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%1 wykres przez %2"
@@ -529,7 +529,7 @@ msgstr ""
 msgid "'%1' is an invalid value for status"
 msgstr "'%1' to nieprawidłowa wartość statusu"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1686,11 +1686,11 @@ msgstr ""
 msgid "Class is"
 msgstr "KlasÄ… jest"
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -2329,7 +2329,7 @@ msgstr "Utwórz pole, które dotyczy wszystkich kolejek"
 msgid "Create a new Custom Field"
 msgstr "Utwórz nowe pole definiowane przez użytkownika"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr "Utwórz nowy artykuł"
 
@@ -2875,7 +2875,7 @@ msgstr "DelegateRights"
 msgid "Delegation"
 msgstr "Przekazywanie uprawnień"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Usuń"
 
@@ -4423,7 +4423,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "Nieprawidłowy typ grupy"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -5187,7 +5187,7 @@ msgstr "Modyfikuj skrypt dla kolejki %1"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Modyfikuj skrypt, który dotyczy wszystkich kolejek"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr "Modyfikuj artykuł #%1"
@@ -5892,7 +5892,7 @@ msgstr ""
 msgid "No permission to set preferences"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -6275,7 +6275,7 @@ msgstr ""
 msgid "Open"
 msgstr "Otwarte"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -6519,7 +6519,7 @@ msgstr ""
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Odmowa dostępu"
 
@@ -7014,7 +7014,7 @@ msgstr ""
 msgid "RTFM Error"
 msgstr "BÅ‚Ä…d RTFM"
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -7151,7 +7151,7 @@ msgstr ""
 msgid "Refresh this page every %1 minutes."
 msgstr "Odświeżaj tę stronę co %1 minut."
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -7298,7 +7298,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Tel. domowy"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Zamknij"
 
@@ -7548,11 +7548,7 @@ msgstr "Kryteria wyszukiwania"
 msgid "Search Preferences"
 msgstr "Preferencje wyszukiwania"
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -7607,10 +7603,14 @@ msgstr "Zabezpieczenie:"
 msgid "See also:"
 msgstr "Zobacz też:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See exact outgoing email messages and their recipeients"
 msgstr "Zobacz dosłowne wiadomości wychodzące i ich odbiorców"
@@ -8211,7 +8211,7 @@ msgstr "Arkusz kalkulacyjny"
 msgid "Stage"
 msgstr "Etap"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -8791,7 +8791,7 @@ msgstr ""
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr ""
 
@@ -9237,7 +9237,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr ""
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr "Nie udało się załadować artykułu"
 
@@ -9271,12 +9271,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr ""
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -9980,7 +9980,7 @@ msgstr ""
 msgid "You are not an authorized user"
 msgstr "Nie jesteś autoryzowanym użytkownikiem"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr ""
diff --git a/share/po/pt.po b/share/po/pt.po
index e3ea8e6..3daaef5 100644
--- a/share/po/pt.po
+++ b/share/po/pt.po
@@ -129,7 +129,7 @@ msgstr "%1 %2 gravado."
 msgid "%1 %2 updated."
 msgstr ""
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -288,7 +288,7 @@ msgstr "%1 alterado de %2 para %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr ""
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%1 gráfico por %2"
@@ -516,7 +516,7 @@ msgstr "%quant(%1,hora)"
 msgid "'%1' is an invalid value for status"
 msgstr "%1 é um valor inválido para o estado"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1541,11 +1541,11 @@ msgstr ""
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -2108,7 +2108,7 @@ msgstr "Criar um campo personalizado"
 msgid "Create a CustomField for queue %1"
 msgstr "Criar um campo personalizado para a queue %1"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr ""
 
@@ -2610,7 +2610,7 @@ msgstr "DelegarDireitos"
 msgid "Delegation"
 msgstr "Delegação"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Apagar"
 
@@ -4037,7 +4037,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "Tipo de Grupo Inválido"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -4765,7 +4765,7 @@ msgstr "Alterar uma scrip da queue %1"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Alterar uma scrip que se aplica a todas as queues"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -5402,7 +5402,7 @@ msgstr "Não tem permissão para gravar uma pesquisa de sistema"
 msgid "No permission to set preferences"
 msgstr "Sem permissões para definir preferências"
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -5753,7 +5753,7 @@ msgstr ""
 msgid "Only show custom fields for:"
 msgstr ""
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -5969,7 +5969,7 @@ msgstr ""
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Permissão Negada"
 
@@ -6352,7 +6352,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -6477,7 +6477,7 @@ msgstr ""
 msgid "Refresh this page every %1 minutes."
 msgstr "Refrescar esta pagina de %1 em %1 minutos."
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -6608,7 +6608,7 @@ msgstr ""
 msgid "Residence"
 msgstr "Residência"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Resolver"
 
@@ -6846,11 +6846,7 @@ msgstr "Preferências de pesquisa"
 msgid "Search attribute load failure"
 msgstr "Erro a carregar o atributo de pesquisa"
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -6912,10 +6908,14 @@ msgstr "Segurança:"
 msgid "See also:"
 msgstr ""
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: lib/RT/Class.pm:88
 msgid "See that this class exists"
 msgstr ""
@@ -7432,7 +7432,7 @@ msgstr ""
 msgid "Stage"
 msgstr ""
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -7928,7 +7928,7 @@ msgstr ""
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr ""
 
@@ -8294,7 +8294,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr ""
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -8328,12 +8328,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr ""
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -8913,7 +8913,7 @@ msgstr ""
 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption."
 msgstr ""
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr ""
diff --git a/share/po/pt_BR.po b/share/po/pt_BR.po
index 0eea705..7ed5407 100644
--- a/share/po/pt_BR.po
+++ b/share/po/pt_BR.po
@@ -129,7 +129,7 @@ msgstr "%1 %2 salvo."
 msgid "%1 %2 updated."
 msgstr "%1 %2 atualizados."
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -316,7 +316,7 @@ msgstr "%1 alterado de %2 para %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr "%1 alterado de '%2' para '%3'"
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "Gráfico de %1 por %2"
@@ -572,7 +572,7 @@ msgstr "%quant(%1,hora)"
 msgid "'%1' is an invalid value for status"
 msgstr "'%1' é um valor inválido para estado"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr "'%1' não é um identificador de classe valido"
@@ -1793,11 +1793,11 @@ msgstr "Nome da Classe"
 msgid "Class id"
 msgstr "Id da Classe"
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr "Classe já aplicada globalmente"
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr "Classe já aplicada para %1"
@@ -2488,7 +2488,7 @@ msgstr "Criar um CampoPersonalizado que se aplica a todas as filas"
 msgid "Create a new Custom Field"
 msgstr "Criar um novo Campo Personalizado"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr "Criar um novo artigo"
 
@@ -3078,7 +3078,7 @@ msgstr "DelegarDireitos"
 msgid "Delegation"
 msgstr "Delegação"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Remover"
 
@@ -4669,7 +4669,7 @@ msgstr "Valores de origem inválidos para Campo Personalizado"
 msgid "Invalid Group Type"
 msgstr "Tipo Inválido de Grupo"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr "Fila inválida, não é possível aplicar a Classe: %1"
@@ -5461,7 +5461,7 @@ msgstr "Modificar um scrip para a fila %1"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Modificar um scrip aplicável a todas as filas"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -6194,7 +6194,7 @@ msgstr "Sem permissão para salvar buscas com abrangência em todo sistema"
 msgid "No permission to set preferences"
 msgstr "Sem permissão para definir preferências"
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -6585,7 +6585,7 @@ msgstr "Somente apresentar campos personalizados para:"
 msgid "Open"
 msgstr "Aberto"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -6833,7 +6833,7 @@ msgstr ""
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Permissão Negada"
 
@@ -7332,7 +7332,7 @@ msgstr "RT/Admin/Edit o grupo %1"
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -7469,7 +7469,7 @@ msgstr ""
 msgid "Refresh this page every %1 minutes."
 msgstr "Recarregar esta página a cada %1 minutos."
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -7616,7 +7616,7 @@ msgstr "Restaurar valor padrão"
 msgid "Residence"
 msgstr "Residência"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Resolver"
 
@@ -7882,11 +7882,7 @@ msgstr "Buscar Preferências"
 msgid "Search attribute load failure"
 msgstr "Falha na carga de atributos de busca"
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -7952,10 +7948,14 @@ msgstr "Segurança:"
 msgid "See also:"
 msgstr "Ver também:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom field values"
 msgstr "Observar valores de campos personalizados"
@@ -8552,7 +8552,7 @@ msgstr "Planilha"
 msgid "Stage"
 msgstr "Estágio"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -9156,7 +9156,7 @@ msgstr "Estas opções de configuração cobrem parte do que é necessário para
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "Este campo personalizado não se aplica a este objeto"
 
@@ -9614,7 +9614,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr "Incapaz de determinar tipo de objeto ou identificação"
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -9648,12 +9648,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr "Incapaz de fazer inscrição no quadro de indicadores %1: Permissão negada"
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -10365,7 +10365,7 @@ msgstr "Você vai encriptar uma mensagem de email de saida mas existe um problem
 msgid "You are not an authorized user"
 msgstr "Você não é um usuário autorizado"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr "Você pode<a href=\"%1\">ir para a primeira mensagem não lida</a> ou <a href=\"%2\">ir para a primeira mensagem não lida e marcar todas as mensagens como lidas</a>."
diff --git a/share/po/pt_PT.po b/share/po/pt_PT.po
index b39960f..a26807d 100644
--- a/share/po/pt_PT.po
+++ b/share/po/pt_PT.po
@@ -113,7 +113,7 @@ msgstr "%1 %2 gravado."
 msgid "%1 %2 updated."
 msgstr "%1 %2 actualizado."
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -248,7 +248,7 @@ msgstr "%1 alterado de %2 para %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr ""
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%1 gráfico por %2"
@@ -472,7 +472,7 @@ msgstr "%quant(%1,hora)"
 msgid "'%1' is an invalid value for status"
 msgstr "%1 é um valor inválido para o estado"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1421,11 +1421,11 @@ msgstr ""
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -1972,7 +1972,7 @@ msgstr "Criar um campo personalizado"
 msgid "Create a CustomField for queue %1"
 msgstr "Criar um campo personalizado para a queue %1"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr ""
 
@@ -2474,7 +2474,7 @@ msgstr "DelegarDireitos"
 msgid "Delegation"
 msgstr "Delegação"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Apagar"
 
@@ -3869,7 +3869,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr ""
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -4485,7 +4485,7 @@ msgstr ""
 msgid "Modify a scrip that applies to all queues"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -5054,7 +5054,7 @@ msgstr ""
 msgid "No permission to set preferences"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -5373,7 +5373,7 @@ msgstr ""
 msgid "Only show custom fields for:"
 msgstr ""
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -5577,7 +5577,7 @@ msgstr ""
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr ""
 
@@ -5924,7 +5924,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -6049,7 +6049,7 @@ msgstr ""
 msgid "Refresh this page every %1 minutes."
 msgstr ""
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -6176,7 +6176,7 @@ msgstr ""
 msgid "Residence"
 msgstr ""
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr ""
 
@@ -6370,11 +6370,7 @@ msgstr ""
 msgid "Search Preferences"
 msgstr ""
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -6428,10 +6424,14 @@ msgstr ""
 msgid "See also:"
 msgstr ""
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: lib/RT/Class.pm:88
 msgid "See that this class exists"
 msgstr ""
@@ -6912,7 +6912,7 @@ msgstr ""
 msgid "Stage"
 msgstr ""
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -7388,7 +7388,7 @@ msgstr ""
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr ""
 
@@ -7722,7 +7722,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr ""
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -7756,12 +7756,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr ""
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -8337,7 +8337,7 @@ msgstr ""
 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption."
 msgstr ""
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr ""
diff --git a/share/po/rt.pot b/share/po/rt.pot
index 6ee7109..6a7d746 100644
--- a/share/po/rt.pot
+++ b/share/po/rt.pot
@@ -86,7 +86,7 @@ msgstr ""
 msgid "%1 %2 updated."
 msgstr ""
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -213,7 +213,7 @@ msgstr ""
 msgid "%1 changed from '%2' to '%3'"
 msgstr ""
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr ""
@@ -425,7 +425,7 @@ msgstr ""
 msgid "'%1' is an invalid value for status"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1290,11 +1290,11 @@ msgstr ""
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -1809,7 +1809,7 @@ msgstr ""
 msgid "Create a CustomField for queue %1"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr ""
 
@@ -2243,7 +2243,7 @@ msgstr ""
 msgid "DefaultFormat"
 msgstr ""
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr ""
 
@@ -3528,7 +3528,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr ""
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -4144,7 +4144,7 @@ msgstr ""
 msgid "Modify a scrip that applies to all queues"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -4714,7 +4714,7 @@ msgstr ""
 msgid "No permission to set preferences"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -5033,7 +5033,7 @@ msgstr ""
 msgid "Only show custom fields for:"
 msgstr ""
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -5237,7 +5237,7 @@ msgstr ""
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr ""
 
@@ -5584,7 +5584,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -5719,7 +5719,7 @@ msgstr ""
 msgid "Refresh this page every %1 minutes."
 msgstr ""
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -5846,7 +5846,7 @@ msgstr ""
 msgid "Residence"
 msgstr ""
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr ""
 
@@ -6040,11 +6040,7 @@ msgstr ""
 msgid "Search Preferences"
 msgstr ""
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -6098,10 +6094,14 @@ msgstr ""
 msgid "See also:"
 msgstr ""
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: lib/RT/Class.pm:88
 msgid "See that this class exists"
 msgstr ""
@@ -6583,7 +6583,7 @@ msgstr ""
 msgid "Stage"
 msgstr ""
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -7059,7 +7059,7 @@ msgstr ""
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr ""
 
@@ -7393,7 +7393,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr ""
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -7427,12 +7427,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr ""
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -8008,7 +8008,7 @@ msgstr ""
 msgid "You are going to encrypt outgoing email messages, but there is a problem with a recipient's public key. You have to fix the problem with the key, disable sending a message to that recipient, or disable encryption."
 msgstr ""
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr ""
diff --git a/share/po/ru.po b/share/po/ru.po
index 75ab663..4a19b6f 100644
--- a/share/po/ru.po
+++ b/share/po/ru.po
@@ -114,7 +114,7 @@ msgstr "%1 %2 сохранены."
 msgid "%1 %2 updated."
 msgstr "%1 %2 обновлено."
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -253,7 +253,7 @@ msgstr "%1 изменена с %2 на %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr "%1 изменено с '%2' на '%3'"
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "график %1 группированный по %2"
@@ -477,7 +477,7 @@ msgstr "%quant(%1,час,часа,часов)"
 msgid "'%1' is an invalid value for status"
 msgstr "'%1' является неверным значением статуса"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1443,11 +1443,11 @@ msgstr ""
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -1994,7 +1994,7 @@ msgstr "Создать дополнительное поле"
 msgid "Create a CustomField for queue %1"
 msgstr "Создать дополнительное поле для очереди %1"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr ""
 
@@ -2504,7 +2504,7 @@ msgstr "ДелегироватьПрава"
 msgid "Delegation"
 msgstr "Делегирование прав"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Удалить"
 
@@ -3919,7 +3919,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "Недопустимый тип группы"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -4623,7 +4623,7 @@ msgstr "Изменить скриплет для очереди %1"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Изменить скриплет, который действует для всех очередей"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -5268,7 +5268,7 @@ msgstr "Нет доступа для сохранения поиска в общ
 msgid "No permission to set preferences"
 msgstr "Нет прав для установки настроек"
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -5619,7 +5619,7 @@ msgstr "Показывать подтверждения только для за
 msgid "Only show custom fields for:"
 msgstr "Показывать дополнительные поля только для:"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -5839,7 +5839,7 @@ msgstr ""
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Доступ запрещён"
 
@@ -6234,7 +6234,7 @@ msgstr "RT поддерживает различные СУБД: <b>MySQL</b>, <
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -6363,7 +6363,7 @@ msgstr ""
 msgid "Refresh this page every %1 minutes."
 msgstr "Обновлять эту страницу каждые %1 минут."
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -6506,7 +6506,7 @@ msgstr "Сбросить на значения по умолчанию"
 msgid "Residence"
 msgstr "Домашний"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Решить"
 
@@ -6728,11 +6728,11 @@ msgstr ""
 msgid "Search Preferences"
 msgstr "Параметры поиска"
 
-#: share/html/SelfService/Article/Search.html:53
+#: NOT FOUND IN SOURCE
 msgid "Search for Articles articles matching"
 msgstr "Найти статьи, содержащие"
 
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr "Найти статьи, содержащие"
 
@@ -6790,10 +6790,14 @@ msgstr "Безопасность:"
 msgid "See also:"
 msgstr "Смотрите также:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom fields"
 msgstr "Просматривать дополнительные поля"
@@ -7330,7 +7334,7 @@ msgstr "Электронная таблица"
 msgid "Stage"
 msgstr "Стадия"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -7838,7 +7842,7 @@ msgstr "Эти опции конфигурации позволяют задат
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "Это дополнительное поле не относится к этому объекту"
 
@@ -8196,7 +8200,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr "Невозможно определить тип объекта или идентификатор"
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -8230,12 +8234,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr "Невозможно подписаться на содержимое информационной панели %1: Нет доступа"
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -8847,7 +8851,7 @@ msgstr "Вы собираетесь зашифровать исходящее п
 msgid "You are not an authorized user"
 msgstr "Вы неавторизованный пользователь"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr "Вы можете <a href=\"%1\">перейти к первому непрочитаному сообщению</a> или <a href=\"%2\">перейти к первому непрочитаному сообщению и отметить все сообщения как прочитанные</a>."
diff --git a/share/po/sl.po b/share/po/sl.po
index ab4a4d3..e6c6a23 100644
--- a/share/po/sl.po
+++ b/share/po/sl.po
@@ -110,7 +110,7 @@ msgstr "%1 %2 shranjen."
 msgid "%1 %2 updated."
 msgstr "%1 %2 posodobljen."
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -245,7 +245,7 @@ msgstr "%1 spremenjeno iz vrednosti %2 na %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr ""
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "Graf %1 po %2"
@@ -469,7 +469,7 @@ msgstr "%quant(%1,hour)"
 msgid "'%1' is an invalid value for status"
 msgstr "'%1' ni veljavna vrednost za status"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1410,11 +1410,11 @@ msgstr ""
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -1949,7 +1949,7 @@ msgstr "Ustvari prilagojeno polje"
 msgid "Create a CustomField for queue %1"
 msgstr "Ustvari prilagojeno polje za vrsto %1"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr ""
 
@@ -2455,7 +2455,7 @@ msgstr "Delegiraj pravice"
 msgid "Delegation"
 msgstr "Delegiranje"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Izbriši"
 
@@ -3850,7 +3850,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "Neveljevan tip skupine"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -4522,7 +4522,7 @@ msgstr "Spremeni skripto za vrsto %1"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Spremeni skripto ki velja za vse vrste"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -5163,7 +5163,7 @@ msgstr "Ni pravic za shranjevanje sistemskih shranjenih iskanj"
 msgid "No permission to set preferences"
 msgstr "Ni pravic za nastavitev preferenc"
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -5494,7 +5494,7 @@ msgstr "Prikaži le odobritve za zahtevke ustvarjene pred %1"
 msgid "Only show custom fields for:"
 msgstr "Prikaži le prilagojena polja za:"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -5706,7 +5706,7 @@ msgstr "Iskalni vrstni red za Perl knjižnjice"
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Ni pravic"
 
@@ -6085,7 +6085,7 @@ msgstr "RT/Admin/Spremeni skupino %1"
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr "RTAddressRegexp opcija v konfiguraciji se ne ujema s %1"
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -6214,7 +6214,7 @@ msgstr "Osveži rezultate iskanja vsako uro."
 msgid "Refresh this page every %1 minutes."
 msgstr "Osveži to stran vsakih %1 minut."
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -6349,7 +6349,7 @@ msgstr "Ponastavi na privzeto vrednost"
 msgid "Residence"
 msgstr "Bivališče"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Reši"
 
@@ -6571,11 +6571,7 @@ msgstr ""
 msgid "Search Preferences"
 msgstr "Shranjene nastavitve"
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -6633,10 +6629,14 @@ msgstr "Varnost:"
 msgid "See also:"
 msgstr "Poglej tudi:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom field values"
 msgstr "Poglej vrednosti prilagojenih polj"
@@ -7169,7 +7169,7 @@ msgstr "Preglednica"
 msgid "Stage"
 msgstr "Stanje"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -7677,7 +7677,7 @@ msgstr "Te nastavitvene možnosti obsegajo osnove da se RT postavi. Vedeti moram
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "To prilagojeno polje ne velja za ta objekt"
 
@@ -8035,7 +8035,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr "Ni možno določiti tipa objekta ali id-ja"
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -8069,12 +8069,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr "Na pregled %1 se ni možno naročiti: ni pravic"
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -8678,7 +8678,7 @@ msgstr "Izhodno e-pošto boš kodiral, vendar so problemi s prejemnikovimi javni
 msgid "You are not an authorized user"
 msgstr "Nisi avtoriziran uporabnik"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr "Skočiš lahko na <a href=\"%1\">prvo neprebrano sporočilo</a> ali <a href=\"%2\">na prvo neprebrano sporočilo in označiš vsa sporočila kot videna</a>."
diff --git a/share/po/sv.po b/share/po/sv.po
index 733df3b..f694e8f 100644
--- a/share/po/sv.po
+++ b/share/po/sv.po
@@ -128,7 +128,7 @@ msgstr "%1 %2 sparad."
 msgid "%1 %2 updated."
 msgstr "%1 %2 uppdaterad."
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -271,7 +271,7 @@ msgstr "%1 ändrat från %2 till %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr "%1 ändrades från '%2' till '%3'"
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%1 diagram enligt %2"
@@ -499,7 +499,7 @@ msgstr "%quant(%1,timme)"
 msgid "'%1' is an invalid value for status"
 msgstr "'%1' är ogiltigt statusvärde"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr "'%1' är inte en tillåten klassidentifierare"
@@ -1528,11 +1528,11 @@ msgstr ""
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -2103,7 +2103,7 @@ msgstr "Skapa ett ExtraFält"
 msgid "Create a CustomField for queue %1"
 msgstr "Skapa ett ExtraFält för kö %1"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr ""
 
@@ -2605,7 +2605,7 @@ msgstr "ÖverlåtRättigheter"
 msgid "Delegation"
 msgstr "Överlåtelse"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Radera"
 
@@ -4032,7 +4032,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "Ogiltig grupptyp"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -4740,7 +4740,7 @@ msgstr "Modifiera ett scrip för kö %1"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Modifiera ett scrip som gäller för alla köer"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -5381,7 +5381,7 @@ msgstr "Ingen tillåtelse att spara systemomfattande sökningar"
 msgid "No permission to set preferences"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -5744,7 +5744,7 @@ msgstr "Visa endast godkännanden för förfrågningar som skapats före %1"
 msgid "Only show custom fields for:"
 msgstr "Visa endast extrafält för:"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -5960,7 +5960,7 @@ msgstr ""
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Tillgång nekas"
 
@@ -6347,7 +6347,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -6472,7 +6472,7 @@ msgstr "Läs in sökresultaten igen var 60 minut."
 msgid "Refresh this page every %1 minutes."
 msgstr "Läs in denna sida igen var %1 minut."
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -6607,7 +6607,7 @@ msgstr "Återställ till förvalda värden"
 msgid "Residence"
 msgstr "Hemma"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Åtgärda"
 
@@ -6853,11 +6853,7 @@ msgstr "Sökpreferenser"
 msgid "Search attribute load failure"
 msgstr "Sökattributinläsningsfel"
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -6923,10 +6919,14 @@ msgstr "Säkerhet:"
 msgid "See also:"
 msgstr "Se även:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom fields"
 msgstr "Se extrafält"
@@ -7471,7 +7471,7 @@ msgstr ""
 msgid "Stage"
 msgstr "Steg"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -7991,7 +7991,7 @@ msgstr ""
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "Detta extrafält gäller inte för det objektet"
 
@@ -8365,7 +8365,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr "Kan ej avgöra objekttyp eller ID"
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -8399,12 +8399,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr ""
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -9008,7 +9008,7 @@ msgstr ""
 msgid "You are not an authorized user"
 msgstr "Du är inte en auktoriserad användare"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr ""
diff --git a/share/po/tr.po b/share/po/tr.po
index ff49f31..7f50c1e 100644
--- a/share/po/tr.po
+++ b/share/po/tr.po
@@ -110,7 +110,7 @@ msgstr "%1 %2 kaydedildi."
 msgid "%1 %2 updated."
 msgstr "%1 %2 güncellendi."
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -253,7 +253,7 @@ msgstr "%1, %2 deÄŸerinden %3 deÄŸerine deÄŸiÅŸti"
 msgid "%1 changed from '%2' to '%3'"
 msgstr ""
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr ""
@@ -481,7 +481,7 @@ msgstr ""
 msgid "'%1' is an invalid value for status"
 msgstr "'%1', durum için geçersiz bir değer"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr ""
@@ -1462,11 +1462,11 @@ msgstr ""
 msgid "Class id"
 msgstr ""
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr ""
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr ""
@@ -2025,7 +2025,7 @@ msgstr "Özel Bölüm Oluştur"
 msgid "Create a CustomField for queue %1"
 msgstr "%1 kuyruğu için özel bir bölüm oluştur"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr ""
 
@@ -2511,7 +2511,7 @@ msgstr "HaklarıDevret"
 msgid "Delegation"
 msgstr "Devretmek"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "Sil"
 
@@ -3882,7 +3882,7 @@ msgstr ""
 msgid "Invalid Group Type"
 msgstr "Geçersiz Grup Türü"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr ""
@@ -4586,7 +4586,7 @@ msgstr "%1 kuyruğu için bir senet değiştir"
 msgid "Modify a scrip that applies to all queues"
 msgstr "Bütün kuyruklara etki eden bir senedi değiştir"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr ""
@@ -5231,7 +5231,7 @@ msgstr "Sistem genelinde yapılan aramaları kaydetmek için gerekli yetki yok"
 msgid "No permission to set preferences"
 msgstr ""
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr ""
 
@@ -5594,7 +5594,7 @@ msgstr "Sadece %1 öncesi oluşturulmuş isteklere ait onayları göster"
 msgid "Only show custom fields for:"
 msgstr "Sadece şunun için özel alanları göster:"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -5810,7 +5810,7 @@ msgstr ""
 msgid "Permanently wipeout data from RT"
 msgstr ""
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "Pääsy kielletty"
 
@@ -6197,7 +6197,7 @@ msgstr ""
 msgid "RTAddressRegexp option in the config doesn't match %1"
 msgstr ""
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -6322,7 +6322,7 @@ msgstr "Arama sonuçlarını her 60 dakikada bir yenile."
 msgid "Refresh this page every %1 minutes."
 msgstr "Bu sayfayı, her %1 dakikada bir yenile"
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -6457,7 +6457,7 @@ msgstr "Varsayılana sıfırla"
 msgid "Residence"
 msgstr "Hane"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "Çöz"
 
@@ -6703,11 +6703,7 @@ msgstr "Arama Tercihleri"
 msgid "Search attribute load failure"
 msgstr "Arama özniteliği yükleme hatası"
 
-#: share/html/SelfService/Article/Search.html:53
-msgid "Search for Articles articles matching"
-msgstr ""
-
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr ""
 
@@ -6773,10 +6769,14 @@ msgstr "Güvenlik:"
 msgid "See also:"
 msgstr "Bakınız:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr ""
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom fields"
 msgstr "Özel alanları gör"
@@ -7321,7 +7321,7 @@ msgstr ""
 msgid "Stage"
 msgstr "AÅŸama"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -7841,7 +7841,7 @@ msgstr ""
 msgid "This Custom Field can not have list of values"
 msgstr ""
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "Bu özel alan, bu nesneye etkimez"
 
@@ -8215,7 +8215,7 @@ msgstr ""
 msgid "Unable to determine object type or id"
 msgstr ""
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr ""
 
@@ -8249,12 +8249,12 @@ msgstr ""
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr ""
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -8862,7 +8862,7 @@ msgstr ""
 msgid "You are not an authorized user"
 msgstr "Yetkili bir kullanıcı değilsiniz"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr ""
diff --git a/share/po/zh_CN.po b/share/po/zh_CN.po
index 5708326..f99624b 100644
--- a/share/po/zh_CN.po
+++ b/share/po/zh_CN.po
@@ -148,7 +148,7 @@ msgstr "%1 %2已保存"
 msgid "%1 %2 updated."
 msgstr "%1 %2已更新"
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -319,7 +319,7 @@ msgstr "%1 的值从%2改为 %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr "%1 已由'%2' 改为 '%3'"
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%1由%2记录"
@@ -599,7 +599,7 @@ msgstr "找到 %1 项结果"
 msgid "'%1' is an invalid value for status"
 msgstr "'%1' 不是一个合法的状态值"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr "'%1' 不是一个有效的类型标识符"
@@ -2116,11 +2116,11 @@ msgstr "类型名称"
 msgid "Class id"
 msgstr "类型id"
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr "类型已应用到全局"
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr "类型已应用到 %1"
@@ -2863,7 +2863,7 @@ msgstr "为 %1 队列创建自定字段"
 msgid "Create a new Custom Field"
 msgstr "创建自定字段"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr "创建新文章"
 
@@ -3585,7 +3585,7 @@ msgstr "个人群组"
 msgid "Delegation Rights"
 msgstr "个人权限"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "删除"
 
@@ -5600,7 +5600,7 @@ msgstr "无效自定字段值来源"
 msgid "Invalid Group Type"
 msgstr "错误的群组类型"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr "无效队列,无法应用类型: %1"
@@ -6476,7 +6476,7 @@ msgstr "更改%1队列内的脚本"
 msgid "Modify a scrip that applies to all queues"
 msgstr "更改适用于所有队列的脚本"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr "更改文章 #%1"
@@ -7265,7 +7265,7 @@ msgstr "没有保存全局已存搜索的权限"
 msgid "No permission to set preferences"
 msgstr "没有首选项设置的权限"
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr "没有查看文章的权限"
 
@@ -7700,7 +7700,7 @@ msgstr "仅显示适用于下列项目的自定字段:"
 msgid "Open"
 msgstr "打开"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -8008,7 +8008,7 @@ msgstr "Perl库的搜索顺序"
 msgid "Permanently wipeout data from RT"
 msgstr "永久删除 RT 的数据"
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "没有权限"
 
@@ -8707,7 +8707,7 @@ msgstr "配置里的RTAddressRegexp选项不匹配%1"
 msgid "RT_System"
 msgstr "系统消息"
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -8852,7 +8852,7 @@ msgstr "每60分钟刷新一次搜索结果"
 msgid "Refresh this page every %1 minutes."
 msgstr "每%1分钟刷新此页面"
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -9039,7 +9039,7 @@ msgstr "住所"
 msgid "Resolution"
 msgstr "解决状态"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "解决"
 
@@ -9357,11 +9357,11 @@ msgstr "搜索首选项"
 msgid "Search attribute load failure"
 msgstr "搜索属性加载失败"
 
-#: share/html/SelfService/Article/Search.html:53
+#: NOT FOUND IN SOURCE
 msgid "Search for Articles articles matching"
 msgstr "根据文章匹配搜索文章"
 
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr "搜索文章匹配"
 
@@ -9439,10 +9439,14 @@ msgstr "安全性:"
 msgid "See also:"
 msgstr "参见:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr "在该类型搜索文章"
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom field values"
 msgstr "查阅自定字段值"
@@ -10079,7 +10083,7 @@ msgstr "关卡运行动作"
 msgid "Stage Condition"
 msgstr "关卡运行条件"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -10731,7 +10735,7 @@ msgstr "三"
 msgid "This Custom Field can not have list of values"
 msgstr "该自定字段不能具有值列表"
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "此自定字段没有应用于该对象"
 
@@ -11217,7 +11221,7 @@ msgstr "无法删除 %1 主题的成员"
 msgid "Unable to determine object type or id"
 msgstr "无法确定对象类型或编号"
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr "无法加载文章"
 
@@ -11259,12 +11263,12 @@ msgstr "无法订阅表单 %1: 权限被拒绝"
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr "无法订阅表单%1: 没有权限"
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -12032,7 +12036,7 @@ msgstr "您选择了加密邮件,但是某个收件人的公钥有问题。您
 msgid "You are not an authorized user"
 msgstr "您不是被授权的用户"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr "您可以<a href=\"%1\">跳到首个未读消息</a>或者<a href=\"%2\">跳到首个未读消息并且标记所有消息为已读</a>"
diff --git a/share/po/zh_TW.po b/share/po/zh_TW.po
index f8548dc..2f52e37 100644
--- a/share/po/zh_TW.po
+++ b/share/po/zh_TW.po
@@ -149,7 +149,7 @@ msgstr "%1 %2 已儲存。"
 msgid "%1 %2 updated."
 msgstr "%1 %2已更新"
 
-#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:14
+#: share/html/Elements/RT__Scrip/ColumnMap:89 share/html/Ticket/Elements/PreviewScrips:70
 #. ($_[0]->loc($_[0]->ConditionObj->Name),            $_[0]->loc($_[0]->ActionObj->Name),            $_[0]->loc($_[0]->TemplateObj->Name),)
 #. (loc($scrip->ConditionObj->Name), loc($scrip->ActionObj->Name), loc($scrip->TemplateObj->Name))
 msgid "%1 %2 with template %3"
@@ -320,7 +320,7 @@ msgstr "%1 的值從 %2 改為 %3"
 msgid "%1 changed from '%2' to '%3'"
 msgstr "%1 已由'%2' 改為 '%3'"
 
-#: share/html/Search/Chart.html:2
+#: share/html/Search/Chart.html:93
 #. ($m->scomp('Elements/SelectChartType', Name => 'ChartStyle', Default => $ChartStyle), $m->scomp('Elements/SelectGroupBy', Name => 'PrimaryGroupBy', Query => $ARGS{Query}, Default => $PrimaryGroupBy))
 msgid "%1 chart by %2"
 msgstr "%1圖, 依%2"
@@ -600,7 +600,7 @@ msgstr "找到 %1 項結果"
 msgid "'%1' is an invalid value for status"
 msgstr "'%1' 不是一個合法的狀態值"
 
-#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:226 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
+#: share/html/Articles/Article/Edit.html:135 share/html/Articles/Article/Edit.html:225 share/html/Articles/Article/ExtractFromTicket.html:93 share/html/Articles/Article/ExtractIntoTopic.html:70
 #. ($Class)
 msgid "'%1' isn't a valid class identifier"
 msgstr "'%1' 不是一個有效的類型識別字"
@@ -2113,11 +2113,11 @@ msgstr "類型名稱"
 msgid "Class id"
 msgstr "é¡žåž‹id"
 
-#: lib/RT/Class.pm:406
+#: lib/RT/Class.pm:407
 msgid "Class is already applied Globally"
 msgstr "類型已應用到全域"
 
-#: lib/RT/Class.pm:401
+#: lib/RT/Class.pm:402
 #. ($queue->Name)
 msgid "Class is already applied to %1"
 msgstr "類型已應用到 %1"
@@ -2864,7 +2864,7 @@ msgstr "新增套用於所有表單的自訂欄位"
 msgid "Create a new Custom Field"
 msgstr "新增自訂欄位"
 
-#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:231
+#: share/html/Articles/Article/Edit.html:122 share/html/Articles/Article/Edit.html:230
 msgid "Create a new article"
 msgstr "創建新文章"
 
@@ -3598,7 +3598,7 @@ msgstr "代理人群組"
 msgid "Delegation Rights"
 msgstr "代理人權限"
 
-#: etc/RT_Config.pm:2276 etc/RT_Config.pm:2350 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
+#: etc/RT_Config.pm:2286 etc/RT_Config.pm:2360 share/html/Admin/Elements/EditScrips:73 share/html/Articles/Article/Elements/ShowSavedSearches:61 share/html/Dashboards/Modify.html:75 share/html/Elements/Tabs:676 share/html/Elements/Tabs:696 share/html/Search/Elements/EditFormat:116 share/html/Search/Elements/EditQuery:61 share/html/Search/Elements/EditSearches:64 share/html/Widgets/SelectionBox:219
 msgid "Delete"
 msgstr "刪除"
 
@@ -5613,7 +5613,7 @@ msgstr "無效自定欄位值來源"
 msgid "Invalid Group Type"
 msgstr "錯誤的群組類別"
 
-#: lib/RT/Class.pm:395
+#: lib/RT/Class.pm:396
 #. ($msg)
 msgid "Invalid Queue, unable to apply Class: %1"
 msgstr "無效表單,無法應用類型: %1"
@@ -6497,7 +6497,7 @@ msgstr "更改 %1 表單內的手續"
 msgid "Modify a scrip that applies to all queues"
 msgstr "更改適用於所有表單的手續"
 
-#: share/html/Articles/Article/Edit.html:209 share/html/Articles/Article/Edit.html:317
+#: share/html/Articles/Article/Edit.html:208 share/html/Articles/Article/Edit.html:316
 #. ($ArticleObj->Id)
 msgid "Modify article #%1"
 msgstr "更改文章 #%1"
@@ -7294,7 +7294,7 @@ msgstr "沒有儲存全域預存查詢的權限"
 msgid "No permission to set preferences"
 msgstr "沒有設定權限"
 
-#: share/html/Articles/Article/Edit.html:324
+#: share/html/Articles/Article/Edit.html:323
 msgid "No permission to view Article"
 msgstr "沒有查看文章的權限"
 
@@ -7729,7 +7729,7 @@ msgstr "僅顯示適用於下列項目的自訂欄位:"
 msgid "Open"
 msgstr "é–‹å•Ÿ"
 
-#: etc/RT_Config.pm:2264 etc/RT_Config.pm:2293 etc/RT_Config.pm:2338 etc/RT_Config.pm:2367
+#: etc/RT_Config.pm:2274 etc/RT_Config.pm:2303 etc/RT_Config.pm:2348 etc/RT_Config.pm:2377
 msgid "Open It"
 msgstr ""
 
@@ -8037,7 +8037,7 @@ msgstr "Perl庫的搜索順序"
 msgid "Permanently wipeout data from RT"
 msgstr "永久刪除 RT 的資料"
 
-#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:388 lib/RT/Class.pm:440 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
+#: lib/RT/ACE.pm:249 lib/RT/ACE.pm:255 lib/RT/ACE.pm:331 lib/RT/Article.pm:112 lib/RT/Article.pm:266 lib/RT/Article.pm:371 lib/RT/Article.pm:388 lib/RT/Article.pm:417 lib/RT/Article.pm:469 lib/RT/Article.pm:493 lib/RT/Article.pm:566 lib/RT/Attachment.pm:688 lib/RT/Attachment.pm:689 lib/RT/Attachment.pm:750 lib/RT/Attachment.pm:751 lib/RT/Attribute.pm:166 lib/RT/Attribute.pm:172 lib/RT/Attribute.pm:379 lib/RT/Attribute.pm:388 lib/RT/Attribute.pm:401 lib/RT/Class.pm:202 lib/RT/Class.pm:237 lib/RT/Class.pm:389 lib/RT/Class.pm:441 lib/RT/CurrentUser.pm:138 lib/RT/CurrentUser.pm:144 lib/RT/CurrentUser.pm:150 lib/RT/CustomField.pm:1284 lib/RT/CustomField.pm:1330 lib/RT/CustomField.pm:1373 lib/RT/CustomField.pm:1514 lib/RT/CustomField.pm:1655 lib/RT/CustomField.pm:312 lib/RT/CustomField.pm:329 lib/RT/CustomField.pm:340 lib/RT/CustomField.pm:543 lib/RT/CustomField.pm:570 lib/RT/CustomField.pm:874 lib/RT/CustomFieldValue.pm:147 lib/RT/CustomFieldValue.pm:89 lib/RT/Group.pm:1057 lib/R
 T/Group.pm:1109 lib/RT/Group.pm:397 lib/RT/Group.pm:496 lib/RT/Group.pm:652 lib/RT/Group.pm:882 lib/RT/ObjectClass.pm:70 lib/RT/Queue.pm:1197 lib/RT/Queue.pm:200 lib/RT/Queue.pm:218 lib/RT/Queue.pm:570 lib/RT/Queue.pm:596 lib/RT/Queue.pm:820 lib/RT/Scrip.pm:122 lib/RT/Scrip.pm:130 lib/RT/Scrip.pm:141 lib/RT/Scrip.pm:203 lib/RT/Scrip.pm:509 lib/RT/Scrip.pm:517 lib/RT/Template.pm:101 lib/RT/Template.pm:216 lib/RT/Template.pm:221 lib/RT/Template.pm:230 lib/RT/Template.pm:257 lib/RT/Template.pm:386 lib/RT/Template.pm:611 lib/RT/Template.pm:628 lib/RT/Template.pm:646 lib/RT/Ticket.pm:1065 lib/RT/Ticket.pm:1071 lib/RT/Ticket.pm:1078 lib/RT/Ticket.pm:1221 lib/RT/Ticket.pm:1231 lib/RT/Ticket.pm:1245 lib/RT/Ticket.pm:1340 lib/RT/Ticket.pm:1687 lib/RT/Ticket.pm:1920 lib/RT/Ticket.pm:2087 lib/RT/Ticket.pm:2135 lib/RT/Ticket.pm:2414 lib/RT/Ticket.pm:2427 lib/RT/Ticket.pm:2506 lib/RT/Ticket.pm:2519 lib/RT/Ticket.pm:2618 lib/RT/Ticket.pm:2632 lib/RT/Ticket.pm:2891 lib/RT/Ticket.pm:2902 li
 b/RT/Ticket.pm:2908 lib/RT/Ticket.pm:3117 lib/RT/Ticket.pm:3191 lib/RT/Ticket.pm:3386 lib/RT/Topic.pm:113 lib/RT/Topic.pm:141 lib/RT/Topic.pm:207 lib/RT/Transaction.pm:587 lib/RT/Transaction.pm:609 lib/RT/User.pm:1059 lib/RT/User.pm:133 lib/RT/User.pm:1410 lib/RT/User.pm:1547 lib/RT/User.pm:306 lib/RT/User.pm:694 lib/RT/User.pm:729 share/html/Articles/Article/Display.html:82 share/html/Articles/Article/Elements/ShowHistory:68 share/html/Articles/Article/PreCreate.html:61 share/html/SelfService/Article/Display.html:64 share/html/Ticket/Forward.html:84
 msgid "Permission Denied"
 msgstr "權限不足"
 
@@ -8736,7 +8736,7 @@ msgstr "配置里的RTAddressRegexp選項不匹配%1"
 msgid "RT_System"
 msgstr "系統訊息"
 
-#: etc/RT_Config.pm:2296 etc/RT_Config.pm:2300 etc/RT_Config.pm:2370 etc/RT_Config.pm:2374
+#: etc/RT_Config.pm:2306 etc/RT_Config.pm:2310 etc/RT_Config.pm:2380 etc/RT_Config.pm:2384
 msgid "Re-open"
 msgstr ""
 
@@ -8881,7 +8881,7 @@ msgstr "每60分鐘刷新一次搜索結果"
 msgid "Refresh this page every %1 minutes."
 msgstr "每 %1 分鐘更新頁面"
 
-#: etc/RT_Config.pm:2272 etc/RT_Config.pm:2288 etc/RT_Config.pm:2346 etc/RT_Config.pm:2362
+#: etc/RT_Config.pm:2282 etc/RT_Config.pm:2298 etc/RT_Config.pm:2356 etc/RT_Config.pm:2372
 msgid "Reject"
 msgstr ""
 
@@ -9068,7 +9068,7 @@ msgstr "住處"
 msgid "Resolution"
 msgstr "解決狀態"
 
-#: etc/RT_Config.pm:2268 etc/RT_Config.pm:2284 etc/RT_Config.pm:2342 etc/RT_Config.pm:2358 share/html/Search/Elements/EditFormat:75
+#: etc/RT_Config.pm:2278 etc/RT_Config.pm:2294 etc/RT_Config.pm:2352 etc/RT_Config.pm:2368 share/html/Search/Elements/EditFormat:75
 msgid "Resolve"
 msgstr "解決"
 
@@ -9386,11 +9386,11 @@ msgstr "搜尋偏好"
 msgid "Search attribute load failure"
 msgstr "搜尋屬性載入失敗"
 
-#: share/html/SelfService/Article/Search.html:53
+#: NOT FOUND IN SOURCE
 msgid "Search for Articles articles matching"
 msgstr "根據文章匹配搜索文章"
 
-#: share/html/Articles/Elements/BeforeMessageBox:55
+#: share/html/Articles/Elements/BeforeMessageBox:55 share/html/SelfService/Article/Search.html:53
 msgid "Search for Articles matching"
 msgstr "搜索文章匹配"
 
@@ -9468,10 +9468,14 @@ msgstr "安全性:"
 msgid "See also:"
 msgstr "參見:"
 
-#: lib/RT/Class.pm:90 lib/RT/Class.pm:91
+#: lib/RT/Class.pm:90
 msgid "See articles in this class"
 msgstr "在該類型搜索文章"
 
+#: lib/RT/Class.pm:91
+msgid "See changes to articles in this class"
+msgstr ""
+
 #: NOT FOUND IN SOURCE
 msgid "See custom field values"
 msgstr "查閱自定欄位值"
@@ -10112,7 +10116,7 @@ msgstr "關卡運行動作"
 msgid "Stage Condition"
 msgstr "關卡運行條件"
 
-#: etc/RT_Config.pm:2280 etc/RT_Config.pm:2354
+#: etc/RT_Config.pm:2290 etc/RT_Config.pm:2364
 msgid "Stall"
 msgstr ""
 
@@ -10764,7 +10768,7 @@ msgstr "三"
 msgid "This Custom Field can not have list of values"
 msgstr "該自定欄位不能具有值列表"
 
-#: lib/RT/Class.pm:445 lib/RT/CustomField.pm:1335
+#: lib/RT/Class.pm:446 lib/RT/CustomField.pm:1335
 msgid "This custom field does not apply to that object"
 msgstr "此自訂欄位不適用於該物件"
 
@@ -11250,7 +11254,7 @@ msgstr "無法刪除 %1 主題的成員"
 msgid "Unable to determine object type or id"
 msgstr "無法確定物件類型或編號"
 
-#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:239
+#: share/html/Articles/Article/Delete.html:87 share/html/Articles/Article/Edit.html:238
 msgid "Unable to load article"
 msgstr "無法載入文章"
 
@@ -11292,12 +11296,12 @@ msgstr "無法訂閱表單 %1: 權限被拒絕"
 msgid "Unable to subscribe to dashboard %1: Permission denied"
 msgstr "無法訂閱控制面板 %1: 權限不足"
 
-#: share/html/Ticket/Elements/PreviewScrips:2
+#: share/html/Ticket/Elements/PreviewScrips:58
 #. (RT->Config->Get('WebPath')."/Ticket/ModifyPeople.html?id=".$TicketObj->Id,)
 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:2304 etc/RT_Config.pm:2378
+#: etc/RT_Config.pm:2314 etc/RT_Config.pm:2388
 msgid "Undelete"
 msgstr ""
 
@@ -12065,7 +12069,7 @@ msgstr "您選擇了加密郵件,但是某個收件人的公鑰有問題。您
 msgid "You are not an authorized user"
 msgstr "您不是被授權的使用者"
 
-#: share/html/Ticket/Elements/ShowUpdateStatus:51
+#: share/html/Ticket/Elements/ShowUpdateStatus:54
 #. (RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id. "#txn-".$txn->id, RT->Config->Get('WebPath') ."/Ticket/Display.html?id=". $Ticket->id ."&MarkAsSeen=1&Anchor=txn-" . $txn->id)
 msgid "You can <a href=\"%1\">jump to the first unread message</a> or <a href=\"%2\">jump to the first unread message and mark all messages as seen</a>."
 msgstr "<a href=\"%1\">跳至第一個未讀訊息</a>或<a href=\"%2\">跳至第一個未讀的訊息並將所有訊息標記為已讀</a>."

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


More information about the Rt-commit mailing list