[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