[Rt-commit] r10600 - in rt/branches/3.999-DANGEROUS: . docs/design_docs html/Elements html/SelfService html/SelfService/Elements html/Ticket html/Tools lib/RT/Interface lib/RT/Interface/Email/Auth t/api t/mail t/shredder t/ticket t/web

jesse at bestpractical.com jesse at bestpractical.com
Wed Jan 30 17:22:31 EST 2008


Author: jesse
Date: Wed Jan 30 17:22:30 2008
New Revision: 10600

Modified:
   rt/branches/3.999-DANGEROUS/   (props changed)
   rt/branches/3.999-DANGEROUS/docs/design_docs/realflow.txt
   rt/branches/3.999-DANGEROUS/docs/design_docs/ruleset-workflow.txt
   rt/branches/3.999-DANGEROUS/html/Elements/SelectQueue
   rt/branches/3.999-DANGEROUS/html/SelfService/CreateTicketInQueue.html
   rt/branches/3.999-DANGEROUS/html/SelfService/Display.html
   rt/branches/3.999-DANGEROUS/html/SelfService/Elements/Tabs
   rt/branches/3.999-DANGEROUS/html/Ticket/Display.html
   rt/branches/3.999-DANGEROUS/html/Tools/Offline.html
   rt/branches/3.999-DANGEROUS/lib/RT/Interface/Email.pm
   rt/branches/3.999-DANGEROUS/lib/RT/Interface/Email/Auth/MailFrom.pm
   rt/branches/3.999-DANGEROUS/lib/RT/Interface/Web.pm
   rt/branches/3.999-DANGEROUS/share/po/cs.po
   rt/branches/3.999-DANGEROUS/share/po/da.po
   rt/branches/3.999-DANGEROUS/share/po/de.po
   rt/branches/3.999-DANGEROUS/share/po/es.po
   rt/branches/3.999-DANGEROUS/share/po/fi.po
   rt/branches/3.999-DANGEROUS/share/po/fr.po
   rt/branches/3.999-DANGEROUS/share/po/he.po
   rt/branches/3.999-DANGEROUS/share/po/hu.po
   rt/branches/3.999-DANGEROUS/share/po/id.po
   rt/branches/3.999-DANGEROUS/share/po/it.po
   rt/branches/3.999-DANGEROUS/share/po/ja.po
   rt/branches/3.999-DANGEROUS/share/po/nl.po
   rt/branches/3.999-DANGEROUS/share/po/no.po
   rt/branches/3.999-DANGEROUS/share/po/pl.po
   rt/branches/3.999-DANGEROUS/share/po/pt_br.po
   rt/branches/3.999-DANGEROUS/share/po/ru.po
   rt/branches/3.999-DANGEROUS/share/po/sv.po
   rt/branches/3.999-DANGEROUS/share/po/tr.po
   rt/branches/3.999-DANGEROUS/share/po/zh_cn.po
   rt/branches/3.999-DANGEROUS/share/po/zh_tw.po
   rt/branches/3.999-DANGEROUS/t/api/system.t
   rt/branches/3.999-DANGEROUS/t/mail/gateway.t
   rt/branches/3.999-DANGEROUS/t/mail/gnupg-realmail.t
   rt/branches/3.999-DANGEROUS/t/mail/gnupg-reverification.t
   rt/branches/3.999-DANGEROUS/t/shredder/02queue.t
   rt/branches/3.999-DANGEROUS/t/ticket/deffered_owner.t
   rt/branches/3.999-DANGEROUS/t/ticket/linking.t
   rt/branches/3.999-DANGEROUS/t/web/cf_access.t
   rt/branches/3.999-DANGEROUS/t/web/crypt-gnupg.t
   rt/branches/3.999-DANGEROUS/t/web/gnupg-outgoing.t
   rt/branches/3.999-DANGEROUS/t/web/gnupg-select-keys-on-create.t
   rt/branches/3.999-DANGEROUS/t/web/gnupg-select-keys-on-update.t
   rt/branches/3.999-DANGEROUS/t/web/ticket_owner.t
   rt/branches/3.999-DANGEROUS/t/web/ticket_seen.t

Log:
 r75969 at pinglin:  jesse | 2008-01-30 17:18:59 -0500
 Keep restoring the "CreateTicket" right
 


Modified: rt/branches/3.999-DANGEROUS/docs/design_docs/realflow.txt
==============================================================================
--- rt/branches/3.999-DANGEROUS/docs/design_docs/realflow.txt	(original)
+++ rt/branches/3.999-DANGEROUS/docs/design_docs/realflow.txt	Wed Jan 30 17:22:30 2008
@@ -34,11 +34,11 @@
 - If "CEO" is resolved, resolve the original ticket.
 - If "CEO" is rejected, reject the original ticket.
 
-[RuleAction create_ticketWithRuleset]
+[RuleAction CreateTicketWithRuleset]
   -> ReleaseMyLockOnRuleset $ruleset
   -> UnlessLockOnRuleset $ruleset
      # i.e. if no active tickets still have a lock on it
-     -> Forcecreate_ticketWithRuleset $ruleset
+     -> ForceCreateTicketWithRuleset $ruleset
 
 [Queue OrderRequest]
   -> Condition: OnCreate
@@ -48,12 +48,12 @@
 [RuleSet: PurchaseApproval]
   -> Condition: OnCreate 
      Condition: CF.Price > 1000
-     Action: create_ticketWithRuleset "ManagerApproval"
+     Action: CreateTicketWithRuleset "ManagerApproval"
   -> Condition: OnCreate 
      Condition: CF.Price > 2000
-     Action: create_ticketWithRuleset "PresidentApproval"
+     Action: CreateTicketWithRuleset "PresidentApproval"
   -> Condition: OnCreate 
-     Action: create_ticketWithRuleset "FinanceApproval"
+     Action: CreateTicketWithRuleset "FinanceApproval"
   -> Condition: OnReject
      Action: DeleteTree
 
@@ -61,15 +61,15 @@
   -> Condition: OnCreate
      Action: Prohibit Ruleset "FinanceApproval"
   -> Condition: OnResolve
-     Action: create_ticketWithRuleset "FinanceApproval"
+     Action: CreateTicketWithRuleset "FinanceApproval"
   -> Condition: OnReject
      Action: RejectTicket TOP
 
 [RuleSet: PresidentApproval]
   -> Condition: OnCreate
-     Action: Prohibit create_ticketWithRuleset "FinanceApproval"
+     Action: Prohibit CreateTicketWithRuleset "FinanceApproval"
   -> Condition: OnResolve
-     Action: create_ticketWithRuleset "FinanceApproval"
+     Action: CreateTicketWithRuleset "FinanceApproval"
   -> Condition: OnReject
      Action: RejectTicket TOP
 
@@ -79,7 +79,7 @@
   -> Condition: OnResolve
      Action: ResolveTicket TOP
   -> Condition: OnReject
-     Action: create_ticketWithRuleset "CEOApproval"
+     Action: CreateTicketWithRuleset "CEOApproval"
 
 [RuleSet: CEOApproval]
   -> Condition: OnResolve
@@ -145,13 +145,13 @@
 
 [Unassociated]
   - Rule FOO: OnAnything {
-        create_ticketIfNotBlocked StageFOO
+        CreateTicketIfNotBlocked StageFOO
         add_link DependedOnBy TOP to Stage1
         AssignRule DoStage2 to Stage1
         AssignRule DoStage3 to Stage1
     }
   - Rule BAR: OnAnything {
-        create_ticketIfNotBlocked StageBAR
+        CreateTicketIfNotBlocked StageBAR
         DoSomethingBizzare
     }
 

Modified: rt/branches/3.999-DANGEROUS/docs/design_docs/ruleset-workflow.txt
==============================================================================
--- rt/branches/3.999-DANGEROUS/docs/design_docs/ruleset-workflow.txt	(original)
+++ rt/branches/3.999-DANGEROUS/docs/design_docs/ruleset-workflow.txt	Wed Jan 30 17:22:30 2008
@@ -35,16 +35,16 @@
 === RuleAction "AquireMyLocks"
 
   FOREACH $Scrip IN $ticket_obj->scrips
-    WHERE $Scrip.Action.Type == "Trycreate_ticketWithRuleset"
+    WHERE $Scrip.Action.Type == "TryCreateTicketWithRuleset"
        DO LockRuleset $Scrip.Action.Argument
 
-=== RuleAction "Trycreate_ticketWithRuleset"
+=== RuleAction "TryCreateTicketWithRuleset"
 
   DO ReleaseMyLockOnRuleset $Argument
   UNLESS RulesetLocked $Argument
-      DO create_ticketWithRuleset $Argument
+      DO CreateTicketWithRuleset $Argument
 
-=== RuleAction "create_ticketWithRuleset"
+=== RuleAction "CreateTicketWithRuleset"
 
   GIVEN $Ticket AS create_ticket(@OtherArguments)
      DO SetTicketRuleSet $Argument
@@ -74,17 +74,17 @@
 * Rule:
 ** Condition: OnCreate 
 ** Condition: CF.Price > 1000
-** Action: Trycreate_ticketWithRuleset "ManagerApproval"
+** Action: TryCreateTicketWithRuleset "ManagerApproval"
 
 * Rule:
 ** Condition: OnCreate 
 ** Condition: CF.Price > 2000
-** Action: Trycreate_ticketWithRuleset "PresidentApproval"
+** Action: TryCreateTicketWithRuleset "PresidentApproval"
 
 * Rule:
 ** Condition: OnCreate 
 ** Condition: "Finance" is not blocked
-** Action: Trycreate_ticketWithRuleset "FinanceApproval"
+** Action: TryCreateTicketWithRuleset "FinanceApproval"
 
 * Rule:
 ** Condition: OnReject
@@ -98,7 +98,7 @@
 
 * Rule:
 ** Condition: OnResolve
-** Action: Trycreate_ticketWithRuleset "FinanceApproval"
+** Action: TryCreateTicketWithRuleset "FinanceApproval"
 
 * Rule:
 ** Condition: OnReject
@@ -112,7 +112,7 @@
 
 * Rule:
 ** Condition: OnResolve
-** Action: Trycreate_ticketWithRuleset "FinanceApproval"
+** Action: TryCreateTicketWithRuleset "FinanceApproval"
 
 * Rule:
 ** Condition: OnReject
@@ -126,7 +126,7 @@
 
 * Rule:
 ** Condition: OnReject
-** Action: Forcecreate_ticketWithRuleset "CEOApproval"
+** Action: ForceCreateTicketWithRuleset "CEOApproval"
 
 === RuleSet: "CEOApproval"
 

Modified: rt/branches/3.999-DANGEROUS/html/Elements/SelectQueue
==============================================================================
--- rt/branches/3.999-DANGEROUS/html/Elements/SelectQueue	(original)
+++ rt/branches/3.999-DANGEROUS/html/Elements/SelectQueue	Wed Jan 30 17:22:30 2008
@@ -67,7 +67,7 @@
 </select>
 % }
 <%args>
-$CheckQueueRight => 'create_ticket'
+$CheckQueueRight => 'CreateTicket'
 $ShowNullOption => 1
 $ShowAllQueues => 1
 $name => undef

Modified: rt/branches/3.999-DANGEROUS/html/SelfService/CreateTicketInQueue.html
==============================================================================
--- rt/branches/3.999-DANGEROUS/html/SelfService/CreateTicketInQueue.html	(original)
+++ rt/branches/3.999-DANGEROUS/html/SelfService/CreateTicketInQueue.html	Wed Jan 30 17:22:30 2008
@@ -51,7 +51,7 @@
 
 <dl>
 % while (my $queue = $queues->next) {    
-% next unless $queue->current_user_has_right('create_ticket');
+% next unless $queue->current_user_has_right('CreateTicket');
 
 <dt><a href="<%RT->config->get('WebPath')%>/SelfService/Create.html?Queue=<%$queue->id%>"><%$queue->name%></a></dt>
 <dd><%$queue->description%></dd>

Modified: rt/branches/3.999-DANGEROUS/html/SelfService/Display.html
==============================================================================
--- rt/branches/3.999-DANGEROUS/html/SelfService/Display.html	(original)
+++ rt/branches/3.999-DANGEROUS/html/SelfService/Display.html	Wed Jan 30 17:22:30 2008
@@ -130,7 +130,7 @@
         $m->abort;
     }
 
-    unless ( $Queue->current_user_has_right('create_ticket') ) {
+    unless ( $Queue->current_user_has_right('CreateTicket') ) {
         $m->comp( 'Error.html',
             Why =>
               _('You have no permission to create tickets in that queue.') );

Modified: rt/branches/3.999-DANGEROUS/html/SelfService/Elements/Tabs
==============================================================================
--- rt/branches/3.999-DANGEROUS/html/SelfService/Elements/Tabs	(original)
+++ rt/branches/3.999-DANGEROUS/html/SelfService/Elements/Tabs	Wed Jan 30 17:22:30 2008
@@ -62,7 +62,7 @@
 my $queue_id = 1;
 
 while (my $queue = $queues->next) {
-  next unless $queue->current_user_has_right('create_ticket');
+  next unless $queue->current_user_has_right('CreateTicket');
   $queue_id = $queue->id;
   $queue_count++;
   last if ($queue_count > 1);

Modified: rt/branches/3.999-DANGEROUS/html/Ticket/Display.html
==============================================================================
--- rt/branches/3.999-DANGEROUS/html/Ticket/Display.html	(original)
+++ rt/branches/3.999-DANGEROUS/html/Ticket/Display.html	Wed Jan 30 17:22:30 2008
@@ -109,7 +109,7 @@
         abort('Queue not found');
     }
 
-    unless ( $Queue->current_user_has_right('create_ticket') ) {
+    unless ( $Queue->current_user_has_right('CreateTicket') ) {
         abort('You have no permission to create tickets in that queue.');
     }
 

Modified: rt/branches/3.999-DANGEROUS/html/Tools/Offline.html
==============================================================================
--- rt/branches/3.999-DANGEROUS/html/Tools/Offline.html	(original)
+++ rt/branches/3.999-DANGEROUS/html/Tools/Offline.html	Wed Jan 30 17:22:30 2008
@@ -117,7 +117,7 @@
     }
     $template =~ s/\r\n/\n/gs;
     $action->parse(Content => $template, queue => $qname, Requestor => $requestoraddress);
-    foreach ( @{ $action->{'create_tickets'} } ) {
+    foreach ( @{ $action->{'CreateTickets'} } ) {
         my $id = $_;
         $id =~ s/^create\-//;
         $string .= "===Create-Ticket: $id\n";

Modified: rt/branches/3.999-DANGEROUS/lib/RT/Interface/Email.pm
==============================================================================
--- rt/branches/3.999-DANGEROUS/lib/RT/Interface/Email.pm	(original)
+++ rt/branches/3.999-DANGEROUS/lib/RT/Interface/Email.pm	Wed Jan 30 17:22:30 2008
@@ -1287,7 +1287,7 @@
     if ( $SystemTicket->id ) {
         $right = 'ReplyToTicket';
     } else {
-        $right = 'create_ticket';
+        $right = 'CreateTicket';
     }
 
     #Set up a queue object

Modified: rt/branches/3.999-DANGEROUS/lib/RT/Interface/Email/Auth/MailFrom.pm
==============================================================================
--- rt/branches/3.999-DANGEROUS/lib/RT/Interface/Email/Auth/MailFrom.pm	(original)
+++ rt/branches/3.999-DANGEROUS/lib/RT/Interface/Email/Auth/MailFrom.pm	Wed Jan 30 17:22:30 2008
@@ -195,7 +195,7 @@
         unless (
             $everyone->principal_object->has_right(
                 object => $args{'queue'},
-                right  => 'create_ticket'
+                right  => 'CreateTicket'
             )
             || $unpriv->principal_object->has_right(
                 object => $args{'queue'},

Modified: rt/branches/3.999-DANGEROUS/lib/RT/Interface/Web.pm
==============================================================================
--- rt/branches/3.999-DANGEROUS/lib/RT/Interface/Web.pm	(original)
+++ rt/branches/3.999-DANGEROUS/lib/RT/Interface/Web.pm	Wed Jan 30 17:22:30 2008
@@ -271,7 +271,7 @@
         abort('Queue not found');
     }
 
-    unless ( $Queue->current_user_has_right('create_ticket') ) {
+    unless ( $Queue->current_user_has_right('CreateTicket') ) {
         abort('You have no permission to create tickets in that queue.');
     }
 

Modified: rt/branches/3.999-DANGEROUS/share/po/cs.po
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/po/cs.po	(original)
+++ rt/branches/3.999-DANGEROUS/share/po/cs.po	Wed Jan 30 17:22:30 2008
@@ -1442,7 +1442,7 @@
 msgid "Couldn't load that user (%1)"
 msgstr "Uživatele (%1) nelze načíst"
 
-#: html/SelfService/Display.html:158 lib/RT/Action/create_tickets.pm:680
+#: html/SelfService/Display.html:158 lib/RT/Action/CreateTickets.pm:680
 #. ($id)
 msgid "Couldn't load ticket '%1'"
 msgstr "Požadavek '%1' nelze načíst"
@@ -1575,7 +1575,7 @@
 msgstr "Vytvořit uložený dotaz"
 
 #: lib/RT/Queue_Overlay.pm:109
-msgid "create_ticket"
+msgid "CreateTicket"
 msgstr "Vytvořit požadavek"
 
 #: html/Elements/SelectDateType:47 html/Ticket/Elements/ShowDates:48 lib/RT/Ticket_Overlay.pm:1169
@@ -5163,7 +5163,7 @@
 msgid "That user already has that right"
 msgstr "Tento uživatel již má toto právo"
 
-#: lib/RT/Action/create_tickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
+#: lib/RT/Action/CreateTickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
 msgid "That user already owns that ticket"
 msgstr "Tento uživatel již tento požadavek vlastní"
 
@@ -5286,7 +5286,7 @@
 msgid "Ticket #%1: %2"
 msgstr "Požadavek #%1: %2"
 
-#: lib/RT/Action/create_tickets.pm:1350 lib/RT/Action/create_tickets.pm:1359 lib/RT/Action/create_tickets.pm:605 lib/RT/Action/create_tickets.pm:729 lib/RT/Action/create_tickets.pm:741
+#: lib/RT/Action/CreateTickets.pm:1350 lib/RT/Action/CreateTickets.pm:1359 lib/RT/Action/CreateTickets.pm:605 lib/RT/Action/CreateTickets.pm:729 lib/RT/Action/CreateTickets.pm:741
 #. ($T::Tickets{$template_id}->id)
 #. ($T::Tickets{$template_id}->id)
 #. ($ticket->id)
@@ -5597,7 +5597,7 @@
 msgid "Update name"
 msgstr "Aktualizovat jméno"
 
-#: lib/RT/Action/create_tickets.pm:750 lib/RT/Interface/Web.pm:584
+#: lib/RT/Action/CreateTickets.pm:750 lib/RT/Interface/Web.pm:584
 msgid "Update not recorded."
 msgstr "Aktualizace nezaznamenána"
 
@@ -5627,7 +5627,7 @@
 msgid "Update ticket #%1 (%2)"
 msgstr "Aktualizace požadavku #%1 (%2)"
 
-#: lib/RT/Action/create_tickets.pm:748 lib/RT/Interface/Web.pm:583
+#: lib/RT/Action/CreateTickets.pm:748 lib/RT/Interface/Web.pm:583
 msgid "Update type was neither correspondence nor comment."
 msgstr "Typ aktualizace nebyl ani korespondence ani komentář."
 

Modified: rt/branches/3.999-DANGEROUS/share/po/da.po
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/po/da.po	(original)
+++ rt/branches/3.999-DANGEROUS/share/po/da.po	Wed Jan 30 17:22:30 2008
@@ -1590,7 +1590,7 @@
 
 #. ($id)
 #: html/SelfService/Display.html:158
-#: lib/RT/Action/create_tickets.pm:680
+#: lib/RT/Action/CreateTickets.pm:680
 msgid "Couldn't load ticket '%1'"
 msgstr "Kunne ikke indlæse sag '%1'"
 
@@ -1737,7 +1737,7 @@
 msgstr "OpretGemtSøgning"
 
 #: lib/RT/Queue_Overlay.pm:109
-msgid "create_ticket"
+msgid "CreateTicket"
 msgstr "OpretSag"
 
 #: html/Elements/SelectDateType:47
@@ -5902,7 +5902,7 @@
 msgid "That user already has that right"
 msgstr "Den bruger har allerede den rettighed"
 
-#: lib/RT/Action/create_tickets.pm:710
+#: lib/RT/Action/CreateTickets.pm:710
 #: lib/RT/Ticket_Overlay.pm:3037
 msgid "That user already owns that ticket"
 msgstr "Brugeren ejer allerede den sag"
@@ -6036,11 +6036,11 @@
 #. ($T::Tickets{$template_id}->id)
 #. ($T::Tickets{$template_id}->id)
 #. ($ticket->id)
-#: lib/RT/Action/create_tickets.pm:1350
-#: lib/RT/Action/create_tickets.pm:1359
-#: lib/RT/Action/create_tickets.pm:605
-#: lib/RT/Action/create_tickets.pm:729
-#: lib/RT/Action/create_tickets.pm:741
+#: lib/RT/Action/CreateTickets.pm:1350
+#: lib/RT/Action/CreateTickets.pm:1359
+#: lib/RT/Action/CreateTickets.pm:605
+#: lib/RT/Action/CreateTickets.pm:729
+#: lib/RT/Action/CreateTickets.pm:741
 msgid "Ticket %1"
 msgstr "Sag %1"
 
@@ -6383,7 +6383,7 @@
 msgid "Update name"
 msgstr "Opdater navn"
 
-#: lib/RT/Action/create_tickets.pm:750
+#: lib/RT/Action/CreateTickets.pm:750
 #: lib/RT/Interface/Web.pm:584
 msgid "Update not recorded."
 msgstr "Opdatering ikke registreret."
@@ -6415,7 +6415,7 @@
 msgid "Update ticket #%1 (%2)"
 msgstr "Opdater sag #%1 (%2)"
 
-#: lib/RT/Action/create_tickets.pm:748
+#: lib/RT/Action/CreateTickets.pm:748
 #: lib/RT/Interface/Web.pm:583
 msgid "Update type was neither correspondence nor comment."
 msgstr "Opdateringstype var hverken korrespondance eller kommentar"

Modified: rt/branches/3.999-DANGEROUS/share/po/de.po
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/po/de.po	(original)
+++ rt/branches/3.999-DANGEROUS/share/po/de.po	Wed Jan 30 17:22:30 2008
@@ -1223,7 +1223,7 @@
 msgid "Couldn't load scrip #%1"
 msgstr ""
 
-#: html/SelfService/Display.html:158 lib/RT/Action/create_tickets.pm:680
+#: html/SelfService/Display.html:158 lib/RT/Action/CreateTickets.pm:680
 #. ($id)
 msgid "Couldn't load ticket '%1'"
 msgstr "Konnte das Anfrage '%1' nicht laden"
@@ -1346,7 +1346,7 @@
 msgstr "GespeicherteSucheErstellen"
 
 #: lib/RT/Queue_Overlay.pm:109
-msgid "create_ticket"
+msgid "CreateTicket"
 msgstr "AnfrageErstellen"
 
 #: html/Elements/SelectDateType:47 html/Ticket/Elements/ShowDates:48 lib/RT/Ticket_Overlay.pm:1169
@@ -4539,7 +4539,7 @@
 msgid "That ticket has unresolved dependencies"
 msgstr "Diese Anfrage hat ungelöste Abhängigkeiten"
 
-#: lib/RT/Action/create_tickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
+#: lib/RT/Action/CreateTickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
 msgid "That user already owns that ticket"
 msgstr "Diese Anfrage gehört bereits diesem Benutzer"
 
@@ -4651,7 +4651,7 @@
 msgid "Ticket #%1: %2"
 msgstr "Anfrage #%1: %2"
 
-#: lib/RT/Action/create_tickets.pm:1350 lib/RT/Action/create_tickets.pm:1359 lib/RT/Action/create_tickets.pm:605 lib/RT/Action/create_tickets.pm:729 lib/RT/Action/create_tickets.pm:741
+#: lib/RT/Action/CreateTickets.pm:1350 lib/RT/Action/CreateTickets.pm:1359 lib/RT/Action/CreateTickets.pm:605 lib/RT/Action/CreateTickets.pm:729 lib/RT/Action/CreateTickets.pm:741
 #. ($T::Tickets{$template_id}->id)
 #. ($T::Tickets{$template_id}->id)
 #. ($ticket->id)
@@ -4887,7 +4887,7 @@
 msgid "Update multiple tickets"
 msgstr "Mehrere Anfragen aktualisieren"
 
-#: lib/RT/Action/create_tickets.pm:750 lib/RT/Interface/Web.pm:584
+#: lib/RT/Action/CreateTickets.pm:750 lib/RT/Interface/Web.pm:584
 msgid "Update not recorded."
 msgstr "Aktualisierung nicht gespeichert."
 
@@ -4918,7 +4918,7 @@
 msgid "Update ticket #%1 (%2)"
 msgstr "Aktualisiere Anfrage #%1 (%2)"
 
-#: lib/RT/Action/create_tickets.pm:748 lib/RT/Interface/Web.pm:583
+#: lib/RT/Action/CreateTickets.pm:748 lib/RT/Interface/Web.pm:583
 msgid "Update type was neither correspondence nor comment."
 msgstr "Aktualisierungstyp war weder Korrespondenz noch Kommentar."
 

Modified: rt/branches/3.999-DANGEROUS/share/po/es.po
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/po/es.po	(original)
+++ rt/branches/3.999-DANGEROUS/share/po/es.po	Wed Jan 30 17:22:30 2008
@@ -1528,7 +1528,7 @@
 msgid "Couldn't load that user (%1)"
 msgstr "No se pudo cargar ese usuario (%1)"
 
-#: html/SelfService/Display.html:158 lib/RT/Action/create_tickets.pm:680
+#: html/SelfService/Display.html:158 lib/RT/Action/CreateTickets.pm:680
 #. ($id)
 msgid "Couldn't load ticket '%1'"
 msgstr "No se pudo cargar el ticket '%1'"
@@ -1669,8 +1669,8 @@
 msgstr ""
 
 #: lib/RT/Queue_Overlay.pm:109
-msgid "create_ticket"
-msgstr "create_ticket"
+msgid "CreateTicket"
+msgstr "CreateTicket"
 
 #: html/Elements/SelectDateType:47 html/Ticket/Elements/ShowDates:48 lib/RT/Ticket_Overlay.pm:1169
 msgid "Created"
@@ -5421,7 +5421,7 @@
 msgid "That user already has that right"
 msgstr "Ese usuario ya tiene ese privilegio"
 
-#: lib/RT/Action/create_tickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
+#: lib/RT/Action/CreateTickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
 msgid "That user already owns that ticket"
 msgstr "Ese usuario ya posee ese ticket"
 
@@ -5552,7 +5552,7 @@
 msgid "Ticket #%1: %2"
 msgstr "Ticket #%1: %2"
 
-#: lib/RT/Action/create_tickets.pm:1350 lib/RT/Action/create_tickets.pm:1359 lib/RT/Action/create_tickets.pm:605 lib/RT/Action/create_tickets.pm:729 lib/RT/Action/create_tickets.pm:741
+#: lib/RT/Action/CreateTickets.pm:1350 lib/RT/Action/CreateTickets.pm:1359 lib/RT/Action/CreateTickets.pm:605 lib/RT/Action/CreateTickets.pm:729 lib/RT/Action/CreateTickets.pm:741
 #. ($T::Tickets{$template_id}->id)
 #. ($T::Tickets{$template_id}->id)
 #. ($ticket->id)
@@ -5867,7 +5867,7 @@
 msgid "Update name"
 msgstr "Actualizar nombre"
 
-#: lib/RT/Action/create_tickets.pm:750 lib/RT/Interface/Web.pm:584
+#: lib/RT/Action/CreateTickets.pm:750 lib/RT/Interface/Web.pm:584
 msgid "Update not recorded."
 msgstr "Actualización no grabada."
 
@@ -5897,7 +5897,7 @@
 msgid "Update ticket #%1 (%2)"
 msgstr "Actualizar ticket #%1 (%2)"
 
-#: lib/RT/Action/create_tickets.pm:748 lib/RT/Interface/Web.pm:583
+#: lib/RT/Action/CreateTickets.pm:748 lib/RT/Interface/Web.pm:583
 msgid "Update type was neither correspondence nor comment."
 msgstr "El tipo de actualización no fue ni respuesta ni comentario"
 

Modified: rt/branches/3.999-DANGEROUS/share/po/fi.po
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/po/fi.po	(original)
+++ rt/branches/3.999-DANGEROUS/share/po/fi.po	Wed Jan 30 17:22:30 2008
@@ -1427,7 +1427,7 @@
 msgid "Couldn't load that user (%1)"
 msgstr "Tämän käyttäjän lataaminen ei onnistunut (%1)"
 
-#: html/SelfService/Display.html:158 lib/RT/Action/create_tickets.pm:680
+#: html/SelfService/Display.html:158 lib/RT/Action/CreateTickets.pm:680
 #. ($id)
 msgid "Couldn't load ticket '%1'"
 msgstr "Tapauksen '%1' lataaminen ei onnistunut"
@@ -1568,7 +1568,7 @@
 msgstr ""
 
 #: lib/RT/Queue_Overlay.pm:109
-msgid "create_ticket"
+msgid "CreateTicket"
 msgstr ""
 
 #: html/Elements/SelectDateType:47 html/Ticket/Elements/ShowDates:48 lib/RT/Ticket_Overlay.pm:1169
@@ -5163,7 +5163,7 @@
 msgid "That user already has that right"
 msgstr "Käyttäjällä on jo tuo oikeus"
 
-#: lib/RT/Action/create_tickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
+#: lib/RT/Action/CreateTickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
 msgid "That user already owns that ticket"
 msgstr "Käyttäjä omistaa jo tämän tapauksen"
 
@@ -5286,7 +5286,7 @@
 msgid "Ticket #%1: %2"
 msgstr "Tapaus #%1: %2"
 
-#: lib/RT/Action/create_tickets.pm:1350 lib/RT/Action/create_tickets.pm:1359 lib/RT/Action/create_tickets.pm:605 lib/RT/Action/create_tickets.pm:729 lib/RT/Action/create_tickets.pm:741
+#: lib/RT/Action/CreateTickets.pm:1350 lib/RT/Action/CreateTickets.pm:1359 lib/RT/Action/CreateTickets.pm:605 lib/RT/Action/CreateTickets.pm:729 lib/RT/Action/CreateTickets.pm:741
 #. ($T::Tickets{$template_id}->id)
 #. ($T::Tickets{$template_id}->id)
 #. ($ticket->id)
@@ -5581,7 +5581,7 @@
 msgid "Update name"
 msgstr "Päivitä nimi"
 
-#: lib/RT/Action/create_tickets.pm:750 lib/RT/Interface/Web.pm:584
+#: lib/RT/Action/CreateTickets.pm:750 lib/RT/Interface/Web.pm:584
 msgid "Update not recorded."
 msgstr "Päivitystä ei tallennettu"
 
@@ -5611,7 +5611,7 @@
 msgid "Update ticket #%1 (%2)"
 msgstr "Päivitä tapaus #%1 (%2)"
 
-#: lib/RT/Action/create_tickets.pm:748 lib/RT/Interface/Web.pm:583
+#: lib/RT/Action/CreateTickets.pm:748 lib/RT/Interface/Web.pm:583
 msgid "Update type was neither correspondence nor comment."
 msgstr "Päivityksen tyyppi ei ollut kirjeenvaihto eikä kommentti."
 

Modified: rt/branches/3.999-DANGEROUS/share/po/fr.po
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/po/fr.po	(original)
+++ rt/branches/3.999-DANGEROUS/share/po/fr.po	Wed Jan 30 17:22:30 2008
@@ -1150,7 +1150,7 @@
 msgid "Couldn't load scrip #%1"
 msgstr ""
 
-#: html/SelfService/Display.html:158 lib/RT/Action/create_tickets.pm:680
+#: html/SelfService/Display.html:158 lib/RT/Action/CreateTickets.pm:680
 #. ($id)
 msgid "Couldn't load ticket '%1'"
 msgstr "Impossible de charger le ticket '%1'"
@@ -1255,7 +1255,7 @@
 msgstr "CréerRechercheSauvée"
 
 #: lib/RT/Queue_Overlay.pm:109
-msgid "create_ticket"
+msgid "CreateTicket"
 msgstr "CréerTicket"
 
 #: html/Elements/SelectDateType:47 html/Ticket/Elements/ShowDates:48 lib/RT/Ticket_Overlay.pm:1169
@@ -4298,7 +4298,7 @@
 msgid "That ticket has unresolved dependencies"
 msgstr "Ticket ayant des tickets fils ou dépendants non résolus"
 
-#: lib/RT/Action/create_tickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
+#: lib/RT/Action/CreateTickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
 msgid "That user already owns that ticket"
 msgstr "Cet utilisateur possède déjà ce ticket"
 
@@ -4409,7 +4409,7 @@
 msgid "Ticket #%1: %2"
 msgstr "Ticket n°%1 : %2"
 
-#: lib/RT/Action/create_tickets.pm:1350 lib/RT/Action/create_tickets.pm:1359 lib/RT/Action/create_tickets.pm:605 lib/RT/Action/create_tickets.pm:729 lib/RT/Action/create_tickets.pm:741
+#: lib/RT/Action/CreateTickets.pm:1350 lib/RT/Action/CreateTickets.pm:1359 lib/RT/Action/CreateTickets.pm:605 lib/RT/Action/CreateTickets.pm:729 lib/RT/Action/CreateTickets.pm:741
 #. ($T::Tickets{$template_id}->id)
 #. ($T::Tickets{$template_id}->id)
 #. ($ticket->id)
@@ -4644,7 +4644,7 @@
 msgid "Update multiple tickets"
 msgstr "Mettre à jour plusieurs tickets"
 
-#: lib/RT/Action/create_tickets.pm:750 lib/RT/Interface/Web.pm:584
+#: lib/RT/Action/CreateTickets.pm:750 lib/RT/Interface/Web.pm:584
 msgid "Update not recorded."
 msgstr "Mise à jour non enregistrée."
 
@@ -4662,7 +4662,7 @@
 msgid "Update ticket #%1 (%2)"
 msgstr "Mette à jour le ticket n°%1 (%2)"
 
-#: lib/RT/Action/create_tickets.pm:748 lib/RT/Interface/Web.pm:583
+#: lib/RT/Action/CreateTickets.pm:748 lib/RT/Interface/Web.pm:583
 msgid "Update type was neither correspondence nor comment."
 msgstr "Le type de mise à jour n'était ni un commentaire ni un courrier."
 

Modified: rt/branches/3.999-DANGEROUS/share/po/he.po
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/po/he.po	(original)
+++ rt/branches/3.999-DANGEROUS/share/po/he.po	Wed Jan 30 17:22:30 2008
@@ -1169,7 +1169,7 @@
 msgid "Couldn't load scrip #%1"
 msgstr ""
 
-#: html/SelfService/Display.html:158 lib/RT/Action/create_tickets.pm:680
+#: html/SelfService/Display.html:158 lib/RT/Action/CreateTickets.pm:680
 #. ($id)
 msgid "Couldn't load ticket '%1'"
 msgstr ""
@@ -1286,7 +1286,7 @@
 msgstr ""
 
 #: lib/RT/Queue_Overlay.pm:109
-msgid "create_ticket"
+msgid "CreateTicket"
 msgstr ""
 
 #: html/Elements/SelectDateType:47 html/Ticket/Elements/ShowDates:48 lib/RT/Ticket_Overlay.pm:1169
@@ -4477,7 +4477,7 @@
 msgid "That ticket has unresolved dependencies"
 msgstr ""
 
-#: lib/RT/Action/create_tickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
+#: lib/RT/Action/CreateTickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
 msgid "That user already owns that ticket"
 msgstr ""
 
@@ -4588,7 +4588,7 @@
 msgid "Ticket #%1: %2"
 msgstr ""
 
-#: lib/RT/Action/create_tickets.pm:1350 lib/RT/Action/create_tickets.pm:1359 lib/RT/Action/create_tickets.pm:605 lib/RT/Action/create_tickets.pm:729 lib/RT/Action/create_tickets.pm:741
+#: lib/RT/Action/CreateTickets.pm:1350 lib/RT/Action/CreateTickets.pm:1359 lib/RT/Action/CreateTickets.pm:605 lib/RT/Action/CreateTickets.pm:729 lib/RT/Action/CreateTickets.pm:741
 #. ($T::Tickets{$template_id}->id)
 #. ($T::Tickets{$template_id}->id)
 #. ($ticket->id)
@@ -4851,7 +4851,7 @@
 msgid "Update name"
 msgstr "עדכן שם"
 
-#: lib/RT/Action/create_tickets.pm:750 lib/RT/Interface/Web.pm:584
+#: lib/RT/Action/CreateTickets.pm:750 lib/RT/Interface/Web.pm:584
 msgid "Update not recorded."
 msgstr ""
 
@@ -4877,7 +4877,7 @@
 msgid "Update ticket #%1 (%2)"
 msgstr ""
 
-#: lib/RT/Action/create_tickets.pm:748 lib/RT/Interface/Web.pm:583
+#: lib/RT/Action/CreateTickets.pm:748 lib/RT/Interface/Web.pm:583
 msgid "Update type was neither correspondence nor comment."
 msgstr ""
 

Modified: rt/branches/3.999-DANGEROUS/share/po/hu.po
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/po/hu.po	(original)
+++ rt/branches/3.999-DANGEROUS/share/po/hu.po	Wed Jan 30 17:22:30 2008
@@ -1143,7 +1143,7 @@
 msgid "Couldn't load scrip #%1"
 msgstr ""
 
-#: html/SelfService/Display.html:158 lib/RT/Action/create_tickets.pm:680
+#: html/SelfService/Display.html:158 lib/RT/Action/CreateTickets.pm:680
 #. ($id)
 msgid "Couldn't load ticket '%1'"
 msgstr "A(z) '%1' nem betölthetõ"
@@ -1240,7 +1240,7 @@
 msgstr ""
 
 #: lib/RT/Queue_Overlay.pm:109
-msgid "create_ticket"
+msgid "CreateTicket"
 msgstr ""
 
 #: html/Elements/SelectDateType:47 html/Ticket/Elements/ShowDates:48 lib/RT/Ticket_Overlay.pm:1169
@@ -4337,7 +4337,7 @@
 msgid "That ticket has unresolved dependencies"
 msgstr ""
 
-#: lib/RT/Action/create_tickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
+#: lib/RT/Action/CreateTickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
 msgid "That user already owns that ticket"
 msgstr "Már ez a felhasználó a tulajdonos!"
 
@@ -4440,7 +4440,7 @@
 msgid "Ticket #%1: %2"
 msgstr "Probléma. %1: %2"
 
-#: lib/RT/Action/create_tickets.pm:1350 lib/RT/Action/create_tickets.pm:1359 lib/RT/Action/create_tickets.pm:605 lib/RT/Action/create_tickets.pm:729 lib/RT/Action/create_tickets.pm:741
+#: lib/RT/Action/CreateTickets.pm:1350 lib/RT/Action/CreateTickets.pm:1359 lib/RT/Action/CreateTickets.pm:605 lib/RT/Action/CreateTickets.pm:729 lib/RT/Action/CreateTickets.pm:741
 #. ($T::Tickets{$template_id}->id)
 #. ($T::Tickets{$template_id}->id)
 #. ($ticket->id)
@@ -4667,7 +4667,7 @@
 msgid "Update multiple tickets"
 msgstr "A kiválasztott problémák frissítése"
 
-#: lib/RT/Action/create_tickets.pm:750 lib/RT/Interface/Web.pm:584
+#: lib/RT/Action/CreateTickets.pm:750 lib/RT/Interface/Web.pm:584
 msgid "Update not recorded."
 msgstr ""
 
@@ -4689,7 +4689,7 @@
 msgid "Update ticket #%1 (%2)"
 msgstr "%1. számú (%2) probléma aktualizálása"
 
-#: lib/RT/Action/create_tickets.pm:748 lib/RT/Interface/Web.pm:583
+#: lib/RT/Action/CreateTickets.pm:748 lib/RT/Interface/Web.pm:583
 msgid "Update type was neither correspondence nor comment."
 msgstr ""
 

Modified: rt/branches/3.999-DANGEROUS/share/po/id.po
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/po/id.po	(original)
+++ rt/branches/3.999-DANGEROUS/share/po/id.po	Wed Jan 30 17:22:30 2008
@@ -1219,7 +1219,7 @@
 msgid "Couldn't load that user (%1)"
 msgstr "Tidak dapat memanggil pengguna tersebut (%1)"
 
-#: html/SelfService/Display.html:158 lib/RT/Action/create_tickets.pm:680
+#: html/SelfService/Display.html:158 lib/RT/Action/CreateTickets.pm:680
 #. ($id)
 msgid "Couldn't load ticket '%1'"
 msgstr "Tidak dapat memanggil Tiket '%1'"
@@ -1316,7 +1316,7 @@
 msgstr "Buat Pencarian yang Disimpan"
 
 #: lib/RT/Queue_Overlay.pm:109
-msgid "create_ticket"
+msgid "CreateTicket"
 msgstr "Buat Tiket"
 
 #: html/Elements/SelectDateType:47 html/Ticket/Elements/ShowDates:48 lib/RT/Ticket_Overlay.pm:1169
@@ -4591,7 +4591,7 @@
 msgid "That ticket has unresolved dependencies"
 msgstr "Tiket ini mempunyai ketergantungan yang belum dapat diselesaikan"
 
-#: lib/RT/Action/create_tickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
+#: lib/RT/Action/CreateTickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
 msgid "That user already owns that ticket"
 msgstr "Pengguna ini sudah memiliki tiket tersebut"
 
@@ -4698,7 +4698,7 @@
 msgid "Ticket #%1: %2"
 msgstr "Tiket #%1: %2"
 
-#: lib/RT/Action/create_tickets.pm:1350 lib/RT/Action/create_tickets.pm:1359 lib/RT/Action/create_tickets.pm:605 lib/RT/Action/create_tickets.pm:729 lib/RT/Action/create_tickets.pm:741
+#: lib/RT/Action/CreateTickets.pm:1350 lib/RT/Action/CreateTickets.pm:1359 lib/RT/Action/CreateTickets.pm:605 lib/RT/Action/CreateTickets.pm:729 lib/RT/Action/CreateTickets.pm:741
 #. ($T::Tickets{$template_id}->id)
 #. ($T::Tickets{$template_id}->id)
 #. ($ticket->id)
@@ -4977,7 +4977,7 @@
 msgid "Update name"
 msgstr "Perbaharui nama"
 
-#: lib/RT/Action/create_tickets.pm:750 lib/RT/Interface/Web.pm:584
+#: lib/RT/Action/CreateTickets.pm:750 lib/RT/Interface/Web.pm:584
 msgid "Update not recorded."
 msgstr "Perbaharui tidak dicatat."
 
@@ -5003,7 +5003,7 @@
 msgid "Update ticket #%1 (%2)"
 msgstr "Perbaharui tiket #%1 (%2)"
 
-#: lib/RT/Action/create_tickets.pm:748 lib/RT/Interface/Web.pm:583
+#: lib/RT/Action/CreateTickets.pm:748 lib/RT/Interface/Web.pm:583
 msgid "Update type was neither correspondence nor comment."
 msgstr " Memperbarui tipe baik korespondensi ataupun  penjelasan."
 

Modified: rt/branches/3.999-DANGEROUS/share/po/it.po
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/po/it.po	(original)
+++ rt/branches/3.999-DANGEROUS/share/po/it.po	Wed Jan 30 17:22:30 2008
@@ -1550,7 +1550,7 @@
 msgid "Couldn't load that user (%1)"
 msgstr "Impossibile caricare questo utente (%1)"
 
-#: html/SelfService/Display.html:158 lib/RT/Action/create_tickets.pm:680
+#: html/SelfService/Display.html:158 lib/RT/Action/CreateTickets.pm:680
 #. ($id)
 msgid "Couldn't load ticket '%1'"
 msgstr "Impossibile caricare il ticket '%1'"
@@ -1691,7 +1691,7 @@
 msgstr "CreaRichiestaSalvata"
 
 #: lib/RT/Queue_Overlay.pm:109
-msgid "create_ticket"
+msgid "CreateTicket"
 msgstr "CreaTicket"
 
 #: html/Elements/SelectDateType:47 html/Ticket/Elements/ShowDates:48 lib/RT/Ticket_Overlay.pm:1169
@@ -5558,7 +5558,7 @@
 msgid "That user already has that right"
 msgstr "L'utente ha già questo diritto"
 
-#: lib/RT/Action/create_tickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
+#: lib/RT/Action/CreateTickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
 msgid "That user already owns that ticket"
 msgstr "L'utente ha già il ticket in carico"
 
@@ -5685,7 +5685,7 @@
 msgid "Ticket #%1: %2"
 msgstr "Ticket n°%1: %2"
 
-#: lib/RT/Action/create_tickets.pm:1350 lib/RT/Action/create_tickets.pm:1359 lib/RT/Action/create_tickets.pm:605 lib/RT/Action/create_tickets.pm:729 lib/RT/Action/create_tickets.pm:741
+#: lib/RT/Action/CreateTickets.pm:1350 lib/RT/Action/CreateTickets.pm:1359 lib/RT/Action/CreateTickets.pm:605 lib/RT/Action/CreateTickets.pm:729 lib/RT/Action/CreateTickets.pm:741
 #. ($T::Tickets{$template_id}->id)
 #. ($T::Tickets{$template_id}->id)
 #. ($ticket->id)
@@ -6008,7 +6008,7 @@
 msgid "Update name"
 msgstr "Aggiorna nome"
 
-#: lib/RT/Action/create_tickets.pm:750 lib/RT/Interface/Web.pm:584
+#: lib/RT/Action/CreateTickets.pm:750 lib/RT/Interface/Web.pm:584
 msgid "Update not recorded."
 msgstr "Aggiornamento non registrato."
 
@@ -6038,7 +6038,7 @@
 msgid "Update ticket #%1 (%2)"
 msgstr "Aggiorna il ticket n°%1 (%2)"
 
-#: lib/RT/Action/create_tickets.pm:748 lib/RT/Interface/Web.pm:583
+#: lib/RT/Action/CreateTickets.pm:748 lib/RT/Interface/Web.pm:583
 msgid "Update type was neither correspondence nor comment."
 msgstr "Il tipo aggiornamento non era ne' corrispondenza ne' commento."
 

Modified: rt/branches/3.999-DANGEROUS/share/po/ja.po
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/po/ja.po	(original)
+++ rt/branches/3.999-DANGEROUS/share/po/ja.po	Wed Jan 30 17:22:30 2008
@@ -1367,7 +1367,7 @@
 msgid "Couldn't load that user (%1)"
 msgstr "そのユーザー(%1)をロードできませんでした"
 
-#: html/SelfService/Display.html:158 lib/RT/Action/create_tickets.pm:680
+#: html/SelfService/Display.html:158 lib/RT/Action/CreateTickets.pm:680
 #. ($id)
 msgid "Couldn't load ticket '%1'"
 msgstr "チケット'%1'をロードできませんでした"
@@ -1488,7 +1488,7 @@
 msgstr ""
 
 #: lib/RT/Queue_Overlay.pm:109
-msgid "create_ticket"
+msgid "CreateTicket"
 msgstr ""
 
 #: html/Elements/SelectDateType:47 html/Ticket/Elements/ShowDates:48 lib/RT/Ticket_Overlay.pm:1169
@@ -4967,7 +4967,7 @@
 msgid "That user already has that right"
 msgstr "そのユーザーはすでに権利があります"
 
-#: lib/RT/Action/create_tickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
+#: lib/RT/Action/CreateTickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
 msgid "That user already owns that ticket"
 msgstr "そのユーザーはすでにチケットを所有しています"
 
@@ -5090,7 +5090,7 @@
 msgid "Ticket #%1: %2"
 msgstr ""
 
-#: lib/RT/Action/create_tickets.pm:1350 lib/RT/Action/create_tickets.pm:1359 lib/RT/Action/create_tickets.pm:605 lib/RT/Action/create_tickets.pm:729 lib/RT/Action/create_tickets.pm:741
+#: lib/RT/Action/CreateTickets.pm:1350 lib/RT/Action/CreateTickets.pm:1359 lib/RT/Action/CreateTickets.pm:605 lib/RT/Action/CreateTickets.pm:729 lib/RT/Action/CreateTickets.pm:741
 #. ($T::Tickets{$template_id}->id)
 #. ($T::Tickets{$template_id}->id)
 #. ($ticket->id)
@@ -5377,7 +5377,7 @@
 msgid "Update name"
 msgstr "アップデートネーム"
 
-#: lib/RT/Action/create_tickets.pm:750 lib/RT/Interface/Web.pm:584
+#: lib/RT/Action/CreateTickets.pm:750 lib/RT/Interface/Web.pm:584
 msgid "Update not recorded."
 msgstr "アップデートは記録されませんでした"
 
@@ -5407,7 +5407,7 @@
 msgid "Update ticket #%1 (%2)"
 msgstr ""
 
-#: lib/RT/Action/create_tickets.pm:748 lib/RT/Interface/Web.pm:583
+#: lib/RT/Action/CreateTickets.pm:748 lib/RT/Interface/Web.pm:583
 msgid "Update type was neither correspondence nor comment."
 msgstr "アップデートタイプは通知でもコメントでもありません"
 

Modified: rt/branches/3.999-DANGEROUS/share/po/nl.po
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/po/nl.po	(original)
+++ rt/branches/3.999-DANGEROUS/share/po/nl.po	Wed Jan 30 17:22:30 2008
@@ -1449,7 +1449,7 @@
 msgid "Couldn't load that user (%1)"
 msgstr "Kon die gebruiker (%1) niet laden"
 
-#: html/SelfService/Display.html:158 lib/RT/Action/create_tickets.pm:680
+#: html/SelfService/Display.html:158 lib/RT/Action/CreateTickets.pm:680
 #. ($id)
 msgid "Couldn't load ticket '%1'"
 msgstr "Kon ticket '%1' niet laden"
@@ -1578,7 +1578,7 @@
 msgstr ""
 
 #: lib/RT/Queue_Overlay.pm:109
-msgid "create_ticket"
+msgid "CreateTicket"
 msgstr "CreëerTicket"
 
 #: html/Elements/SelectDateType:47 html/Ticket/Elements/ShowDates:48 lib/RT/Ticket_Overlay.pm:1169
@@ -5205,7 +5205,7 @@
 msgid "That user already has that right"
 msgstr "Die gebruiker heeft dat recht reeds"
 
-#: lib/RT/Action/create_tickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
+#: lib/RT/Action/CreateTickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
 msgid "That user already owns that ticket"
 msgstr "Die gebruiker is al eigenaar van dat ticket"
 
@@ -5324,7 +5324,7 @@
 msgid "Ticket #%1: %2"
 msgstr "Ticket #%1: %2"
 
-#: lib/RT/Action/create_tickets.pm:1350 lib/RT/Action/create_tickets.pm:1359 lib/RT/Action/create_tickets.pm:605 lib/RT/Action/create_tickets.pm:729 lib/RT/Action/create_tickets.pm:741
+#: lib/RT/Action/CreateTickets.pm:1350 lib/RT/Action/CreateTickets.pm:1359 lib/RT/Action/CreateTickets.pm:605 lib/RT/Action/CreateTickets.pm:729 lib/RT/Action/CreateTickets.pm:741
 #. ($T::Tickets{$template_id}->id)
 #. ($T::Tickets{$template_id}->id)
 #. ($ticket->id)
@@ -5639,7 +5639,7 @@
 msgid "Update name"
 msgstr "Ververs naam"
 
-#: lib/RT/Action/create_tickets.pm:750 lib/RT/Interface/Web.pm:584
+#: lib/RT/Action/CreateTickets.pm:750 lib/RT/Interface/Web.pm:584
 msgid "Update not recorded."
 msgstr "Verversing niet opgeslagen."
 
@@ -5669,7 +5669,7 @@
 msgid "Update ticket #%1 (%2)"
 msgstr "Ververs ticket #%1 (%2)"
 
-#: lib/RT/Action/create_tickets.pm:748 lib/RT/Interface/Web.pm:583
+#: lib/RT/Action/CreateTickets.pm:748 lib/RT/Interface/Web.pm:583
 msgid "Update type was neither correspondence nor comment."
 msgstr "Verversingstype was noch correspondentie, noch commentaar"
 

Modified: rt/branches/3.999-DANGEROUS/share/po/no.po
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/po/no.po	(original)
+++ rt/branches/3.999-DANGEROUS/share/po/no.po	Wed Jan 30 17:22:30 2008
@@ -1562,7 +1562,7 @@
 msgid "Couldn't load that user (%1)"
 msgstr "Kunne ikke laste den brukeren (%1)"
 
-#: html/SelfService/Display.html:158 lib/RT/Action/create_tickets.pm:680
+#: html/SelfService/Display.html:158 lib/RT/Action/CreateTickets.pm:680
 #. ($id)
 msgid "Couldn't load ticket '%1'"
 msgstr "Kunne ikke laste saken '%1'"
@@ -1707,7 +1707,7 @@
 msgstr ""
 
 #: lib/RT/Queue_Overlay.pm:109
-msgid "create_ticket"
+msgid "CreateTicket"
 msgstr "OpprettSak"
 
 #: html/Elements/SelectDateType:47 html/Ticket/Elements/ShowDates:48 lib/RT/Ticket_Overlay.pm:1169
@@ -5478,7 +5478,7 @@
 msgid "That user already has that right"
 msgstr "Den brukeren har allerede den rettigheten"
 
-#: lib/RT/Action/create_tickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
+#: lib/RT/Action/CreateTickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
 msgid "That user already owns that ticket"
 msgstr "Den brukeren eier allerede den saken"
 
@@ -5613,7 +5613,7 @@
 msgid "Ticket #%1: %2"
 msgstr "Sak #%1: %2"
 
-#: lib/RT/Action/create_tickets.pm:1350 lib/RT/Action/create_tickets.pm:1359 lib/RT/Action/create_tickets.pm:605 lib/RT/Action/create_tickets.pm:729 lib/RT/Action/create_tickets.pm:741
+#: lib/RT/Action/CreateTickets.pm:1350 lib/RT/Action/CreateTickets.pm:1359 lib/RT/Action/CreateTickets.pm:605 lib/RT/Action/CreateTickets.pm:729 lib/RT/Action/CreateTickets.pm:741
 #. ($T::Tickets{$template_id}->id)
 #. ($T::Tickets{$template_id}->id)
 #. ($ticket->id)
@@ -5928,7 +5928,7 @@
 msgid "Update name"
 msgstr "Oppdater navn"
 
-#: lib/RT/Action/create_tickets.pm:750 lib/RT/Interface/Web.pm:584
+#: lib/RT/Action/CreateTickets.pm:750 lib/RT/Interface/Web.pm:584
 msgid "Update not recorded."
 msgstr "Oppdatering ikke lagret."
 
@@ -5958,7 +5958,7 @@
 msgid "Update ticket #%1 (%2)"
 msgstr "Oppdater sak #%1 (%2)"
 
-#: lib/RT/Action/create_tickets.pm:748 lib/RT/Interface/Web.pm:583
+#: lib/RT/Action/CreateTickets.pm:748 lib/RT/Interface/Web.pm:583
 msgid "Update type was neither correspondence nor comment."
 msgstr "Oppdateringstype var verken korrespondanse eller kommentar."
 

Modified: rt/branches/3.999-DANGEROUS/share/po/pl.po
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/po/pl.po	(original)
+++ rt/branches/3.999-DANGEROUS/share/po/pl.po	Wed Jan 30 17:22:30 2008
@@ -1568,7 +1568,7 @@
 msgid "Couldn't load that user (%1)"
 msgstr "Nie udało się załadować użytkownika (%1)"
 
-#: html/SelfService/Display.html:158 lib/RT/Action/create_tickets.pm:680
+#: html/SelfService/Display.html:158 lib/RT/Action/CreateTickets.pm:680
 #. ($id)
 msgid "Couldn't load ticket '%1'"
 msgstr "Nie udało się załadować zgłoszenia '%1'"
@@ -1717,8 +1717,8 @@
 msgstr ""
 
 #: lib/RT/Queue_Overlay.pm:109
-msgid "create_ticket"
-msgstr "create_ticket"
+msgid "CreateTicket"
+msgstr "CreateTicket"
 
 #: html/Elements/SelectDateType:47 html/Ticket/Elements/ShowDates:48 lib/RT/Ticket_Overlay.pm:1169
 msgid "Created"

Modified: rt/branches/3.999-DANGEROUS/share/po/pt_br.po
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/po/pt_br.po	(original)
+++ rt/branches/3.999-DANGEROUS/share/po/pt_br.po	Wed Jan 30 17:22:30 2008
@@ -1546,7 +1546,7 @@
 msgid "Couldn't load that user (%1)"
 msgstr "Não pude carregar este usuário (%1)"
 
-#: html/SelfService/Display.html:158 lib/RT/Action/create_tickets.pm:680
+#: html/SelfService/Display.html:158 lib/RT/Action/CreateTickets.pm:680
 #. ($id)
 msgid "Couldn't load ticket '%1'"
 msgstr "Não pude carregar o tíquete '%1'"
@@ -1691,8 +1691,8 @@
 msgstr ""
 
 #: lib/RT/Queue_Overlay.pm:109
-msgid "create_ticket"
-msgstr "create_ticket"
+msgid "CreateTicket"
+msgstr "CreateTicket"
 
 #: html/Elements/SelectDateType:47 html/Ticket/Elements/ShowDates:48 lib/RT/Ticket_Overlay.pm:1169
 msgid "Created"
@@ -5450,7 +5450,7 @@
 msgid "That user already has that right"
 msgstr "Este usuário já tem este direito de acesso"
 
-#: lib/RT/Action/create_tickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
+#: lib/RT/Action/CreateTickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
 msgid "That user already owns that ticket"
 msgstr "Este usuário já possui este tíquete"
 
@@ -5585,7 +5585,7 @@
 msgid "Ticket #%1: %2"
 msgstr "Tíquete #%1: %2"
 
-#: lib/RT/Action/create_tickets.pm:1350 lib/RT/Action/create_tickets.pm:1359 lib/RT/Action/create_tickets.pm:605 lib/RT/Action/create_tickets.pm:729 lib/RT/Action/create_tickets.pm:741
+#: lib/RT/Action/CreateTickets.pm:1350 lib/RT/Action/CreateTickets.pm:1359 lib/RT/Action/CreateTickets.pm:605 lib/RT/Action/CreateTickets.pm:729 lib/RT/Action/CreateTickets.pm:741
 #. ($T::Tickets{$template_id}->id)
 #. ($T::Tickets{$template_id}->id)
 #. ($ticket->id)
@@ -5900,7 +5900,7 @@
 msgid "Update name"
 msgstr "Atualizar nome"
 
-#: lib/RT/Action/create_tickets.pm:750 lib/RT/Interface/Web.pm:584
+#: lib/RT/Action/CreateTickets.pm:750 lib/RT/Interface/Web.pm:584
 msgid "Update not recorded."
 msgstr "Atualização não registrada."
 
@@ -5930,7 +5930,7 @@
 msgid "Update ticket #%1 (%2)"
 msgstr "Atualizar tíquete #%1 (%2)"
 
-#: lib/RT/Action/create_tickets.pm:748 lib/RT/Interface/Web.pm:583
+#: lib/RT/Action/CreateTickets.pm:748 lib/RT/Interface/Web.pm:583
 msgid "Update type was neither correspondence nor comment."
 msgstr "O tipo da atualização não foi nem correspondência e nem comentário."
 

Modified: rt/branches/3.999-DANGEROUS/share/po/ru.po
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/po/ru.po	(original)
+++ rt/branches/3.999-DANGEROUS/share/po/ru.po	Wed Jan 30 17:22:30 2008
@@ -1576,7 +1576,7 @@
 msgid "Couldn't load that user (%1)"
 msgstr "Невозможно загрузить этого пользователя (%1)"
 
-#: html/SelfService/Display.html:158 lib/RT/Action/create_tickets.pm:680
+#: html/SelfService/Display.html:158 lib/RT/Action/CreateTickets.pm:680
 #. ($id)
 msgid "Couldn't load ticket '%1'"
 msgstr "Невозможно загрузить заявку '%1'"
@@ -1729,7 +1729,7 @@
 msgstr "СоздаватьСохраненныйЗапрос"
 
 #: lib/RT/Queue_Overlay.pm:109
-msgid "create_ticket"
+msgid "CreateTicket"
 msgstr "Создать Заявку"
 
 #: html/Elements/SelectDateType:47 html/Ticket/Elements/ShowDates:48 lib/RT/Ticket_Overlay.pm:1169
@@ -5616,7 +5616,7 @@
 msgid "That user already has that right"
 msgstr "Пользователь уже имеет это право"
 
-#: lib/RT/Action/create_tickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
+#: lib/RT/Action/CreateTickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
 msgid "That user already owns that ticket"
 msgstr "Пользователь уже ответственен за эту заявку"
 
@@ -5751,7 +5751,7 @@
 msgid "Ticket #%1: %2"
 msgstr "Заявка #%1: %2"
 
-#: lib/RT/Action/create_tickets.pm:1350 lib/RT/Action/create_tickets.pm:1359 lib/RT/Action/create_tickets.pm:605 lib/RT/Action/create_tickets.pm:729 lib/RT/Action/create_tickets.pm:741
+#: lib/RT/Action/CreateTickets.pm:1350 lib/RT/Action/CreateTickets.pm:1359 lib/RT/Action/CreateTickets.pm:605 lib/RT/Action/CreateTickets.pm:729 lib/RT/Action/CreateTickets.pm:741
 #. ($T::Tickets{$template_id}->id)
 #. ($T::Tickets{$template_id}->id)
 #. ($ticket->id)
@@ -6074,7 +6074,7 @@
 msgid "Update name"
 msgstr "Изменить имя"
 
-#: lib/RT/Action/create_tickets.pm:750 lib/RT/Interface/Web.pm:584
+#: lib/RT/Action/CreateTickets.pm:750 lib/RT/Interface/Web.pm:584
 msgid "Update not recorded."
 msgstr "Изменение не записано."
 
@@ -6104,7 +6104,7 @@
 msgid "Update ticket #%1 (%2)"
 msgstr "Изменение заявки #%1 (%2)"
 
-#: lib/RT/Action/create_tickets.pm:748 lib/RT/Interface/Web.pm:583
+#: lib/RT/Action/CreateTickets.pm:748 lib/RT/Interface/Web.pm:583
 msgid "Update type was neither correspondence nor comment."
 msgstr "Изменение не было ни сообщением, ни комментарием."
 

Modified: rt/branches/3.999-DANGEROUS/share/po/sv.po
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/po/sv.po	(original)
+++ rt/branches/3.999-DANGEROUS/share/po/sv.po	Wed Jan 30 17:22:30 2008
@@ -1252,7 +1252,7 @@
 
 #. ($id)
 #: html/SelfService/Display.html:158
-#: lib/RT/Action/create_tickets.pm:680
+#: lib/RT/Action/CreateTickets.pm:680
 msgid "Couldn't load ticket '%1'"
 msgstr "Går ej att läsa in ärende '%1'"
 
@@ -1363,7 +1363,7 @@
 msgstr "SkapaSparadSök"
 
 #: lib/RT/Queue_Overlay.pm:109
-msgid "create_ticket"
+msgid "CreateTicket"
 msgstr "SkapaÄrende"
 
 #: html/Elements/SelectDateType:47
@@ -4916,7 +4916,7 @@
 msgid "That ticket has unresolved dependencies"
 msgstr "Ärendet har olösta avhängigheter"
 
-#: lib/RT/Action/create_tickets.pm:710
+#: lib/RT/Action/CreateTickets.pm:710
 #: lib/RT/Ticket_Overlay.pm:3037
 msgid "That user already owns that ticket"
 msgstr "Ärendet tillhör redan den användaren"
@@ -5026,11 +5026,11 @@
 #. ($T::Tickets{$template_id}->id)
 #. ($T::Tickets{$template_id}->id)
 #. ($ticket->id)
-#: lib/RT/Action/create_tickets.pm:1350
-#: lib/RT/Action/create_tickets.pm:1359
-#: lib/RT/Action/create_tickets.pm:605
-#: lib/RT/Action/create_tickets.pm:729
-#: lib/RT/Action/create_tickets.pm:741
+#: lib/RT/Action/CreateTickets.pm:1350
+#: lib/RT/Action/CreateTickets.pm:1359
+#: lib/RT/Action/CreateTickets.pm:605
+#: lib/RT/Action/CreateTickets.pm:729
+#: lib/RT/Action/CreateTickets.pm:741
 msgid "Ticket %1"
 msgstr "Ärende %1"
 
@@ -5285,7 +5285,7 @@
 msgid "Update multiple tickets"
 msgstr "Uppdatera flera ärenden"
 
-#: lib/RT/Action/create_tickets.pm:750
+#: lib/RT/Action/CreateTickets.pm:750
 #: lib/RT/Interface/Web.pm:584
 msgid "Update not recorded."
 msgstr "Uppdatera icke-inlästa."
@@ -5305,7 +5305,7 @@
 msgid "Update ticket #%1 (%2)"
 msgstr "Uppdatera ärende #%1 (%2)"
 
-#: lib/RT/Action/create_tickets.pm:748
+#: lib/RT/Action/CreateTickets.pm:748
 #: lib/RT/Interface/Web.pm:583
 msgid "Update type was neither correspondence nor comment."
 msgstr "Uppdateringstyp är varken korrespondens eller kommentar."

Modified: rt/branches/3.999-DANGEROUS/share/po/tr.po
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/po/tr.po	(original)
+++ rt/branches/3.999-DANGEROUS/share/po/tr.po	Wed Jan 30 17:22:30 2008
@@ -1129,7 +1129,7 @@
 msgid "Couldn't load scrip #%1"
 msgstr "Senet #%1 yüklenemedi"
 
-#: html/SelfService/Display.html:158 lib/RT/Action/create_tickets.pm:680
+#: html/SelfService/Display.html:158 lib/RT/Action/CreateTickets.pm:680
 #. ($id)
 msgid "Couldn't load ticket '%1'"
 msgstr "'%1' bileti yüklenemedi"
@@ -1227,7 +1227,7 @@
 msgstr ""
 
 #: lib/RT/Queue_Overlay.pm:109
-msgid "create_ticket"
+msgid "CreateTicket"
 msgstr ""
 
 #: html/Elements/SelectDateType:47 html/Ticket/Elements/ShowDates:48 lib/RT/Ticket_Overlay.pm:1169
@@ -4258,7 +4258,7 @@
 msgid "That ticket has unresolved dependencies"
 msgstr "Bu bilet, çözümlenmemiş bağımlılıklara sahip"
 
-#: lib/RT/Action/create_tickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
+#: lib/RT/Action/CreateTickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
 msgid "That user already owns that ticket"
 msgstr "Bu kullanıcı, zaten bu biletin sahibi"
 
@@ -4361,7 +4361,7 @@
 msgid "Ticket #%1: %2"
 msgstr "Bilet #%1: %2"
 
-#: lib/RT/Action/create_tickets.pm:1350 lib/RT/Action/create_tickets.pm:1359 lib/RT/Action/create_tickets.pm:605 lib/RT/Action/create_tickets.pm:729 lib/RT/Action/create_tickets.pm:741
+#: lib/RT/Action/CreateTickets.pm:1350 lib/RT/Action/CreateTickets.pm:1359 lib/RT/Action/CreateTickets.pm:605 lib/RT/Action/CreateTickets.pm:729 lib/RT/Action/CreateTickets.pm:741
 #. ($T::Tickets{$template_id}->id)
 #. ($T::Tickets{$template_id}->id)
 #. ($ticket->id)
@@ -4584,7 +4584,7 @@
 msgid "Update multiple tickets"
 msgstr "Birden çok bileti güncelle"
 
-#: lib/RT/Action/create_tickets.pm:750 lib/RT/Interface/Web.pm:584
+#: lib/RT/Action/CreateTickets.pm:750 lib/RT/Interface/Web.pm:584
 msgid "Update not recorded."
 msgstr "Güncelleme kaydedilmedi"
 
@@ -4602,7 +4602,7 @@
 msgid "Update ticket #%1 (%2)"
 msgstr "Bileti güncelle: #%1 (%2)"
 
-#: lib/RT/Action/create_tickets.pm:748 lib/RT/Interface/Web.pm:583
+#: lib/RT/Action/CreateTickets.pm:748 lib/RT/Interface/Web.pm:583
 msgid "Update type was neither correspondence nor comment."
 msgstr "Güncelleme türü cevap veya yorum değildi."
 

Modified: rt/branches/3.999-DANGEROUS/share/po/zh_cn.po
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/po/zh_cn.po	(original)
+++ rt/branches/3.999-DANGEROUS/share/po/zh_cn.po	Wed Jan 30 17:22:30 2008
@@ -1889,7 +1889,7 @@
 msgid "Couldn't load that user (%1)"
 msgstr "无法加载该名使用者(%1)"
 
-#: html/SelfService/Display.html:158 lib/RT/Action/create_tickets.pm:680
+#: html/SelfService/Display.html:158 lib/RT/Action/CreateTickets.pm:680
 #. ($id)
 msgid "Couldn't load ticket '%1'"
 msgstr "无法加载申请单 '%1'"
@@ -2054,7 +2054,7 @@
 msgstr ""
 
 #: lib/RT/Queue_Overlay.pm:109
-msgid "create_ticket"
+msgid "CreateTicket"
 msgstr "新增申请单"
 
 #: html/Elements/SelectDateType:47 html/Ticket/Elements/ShowDates:48 lib/RT/Ticket_Overlay.pm:1169
@@ -7041,7 +7041,7 @@
 msgid "That user already has that right"
 msgstr "使用者已具有该项权限"
 
-#: lib/RT/Action/create_tickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
+#: lib/RT/Action/CreateTickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
 msgid "That user already owns that ticket"
 msgstr "该使用者已经承办这份申请单"
 
@@ -7184,7 +7184,7 @@
 msgid "Ticket #%1: %2"
 msgstr "申请单 #%1: %2"
 
-#: lib/RT/Action/create_tickets.pm:1350 lib/RT/Action/create_tickets.pm:1359 lib/RT/Action/create_tickets.pm:605 lib/RT/Action/create_tickets.pm:729 lib/RT/Action/create_tickets.pm:741
+#: lib/RT/Action/CreateTickets.pm:1350 lib/RT/Action/CreateTickets.pm:1359 lib/RT/Action/CreateTickets.pm:605 lib/RT/Action/CreateTickets.pm:729 lib/RT/Action/CreateTickets.pm:741
 #. ($T::Tickets{$template_id}->id)
 #. ($T::Tickets{$template_id}->id)
 #. ($ticket->id)
@@ -7555,7 +7555,7 @@
 msgid "Update name"
 msgstr "更新帐号"
 
-#: lib/RT/Action/create_tickets.pm:750 lib/RT/Interface/Web.pm:584
+#: lib/RT/Action/CreateTickets.pm:750 lib/RT/Interface/Web.pm:584
 msgid "Update not recorded."
 msgstr "更新未被记录"
 
@@ -7585,7 +7585,7 @@
 msgid "Update ticket #%1 (%2)"
 msgstr "更新申请单 #%1 (%2)"
 
-#: lib/RT/Action/create_tickets.pm:748 lib/RT/Interface/Web.pm:583
+#: lib/RT/Action/CreateTickets.pm:748 lib/RT/Interface/Web.pm:583
 msgid "Update type was neither correspondence nor comment."
 msgstr "更新的内容并非申请单回复也不是评论"
 

Modified: rt/branches/3.999-DANGEROUS/share/po/zh_tw.po
==============================================================================
--- rt/branches/3.999-DANGEROUS/share/po/zh_tw.po	(original)
+++ rt/branches/3.999-DANGEROUS/share/po/zh_tw.po	Wed Jan 30 17:22:30 2008
@@ -1889,7 +1889,7 @@
 msgid "Couldn't load that user (%1)"
 msgstr "無法載入該名使用者(%1)"
 
-#: html/SelfService/Display.html:158 lib/RT/Action/create_tickets.pm:680
+#: html/SelfService/Display.html:158 lib/RT/Action/CreateTickets.pm:680
 #. ($id)
 msgid "Couldn't load ticket '%1'"
 msgstr "無法載入申請單 '%1'"
@@ -2054,7 +2054,7 @@
 msgstr ""
 
 #: lib/RT/Queue_Overlay.pm:109
-msgid "create_ticket"
+msgid "CreateTicket"
 msgstr "新增申請單"
 
 #: html/Elements/SelectDateType:47 html/Ticket/Elements/ShowDates:48 lib/RT/Ticket_Overlay.pm:1169
@@ -7041,7 +7041,7 @@
 msgid "That user already has that right"
 msgstr "使用者已具有該項權限"
 
-#: lib/RT/Action/create_tickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
+#: lib/RT/Action/CreateTickets.pm:710 lib/RT/Ticket_Overlay.pm:3037
 msgid "That user already owns that ticket"
 msgstr "該使用者已經承辦這份申請單"
 
@@ -7184,7 +7184,7 @@
 msgid "Ticket #%1: %2"
 msgstr "申請單 #%1: %2"
 
-#: lib/RT/Action/create_tickets.pm:1350 lib/RT/Action/create_tickets.pm:1359 lib/RT/Action/create_tickets.pm:605 lib/RT/Action/create_tickets.pm:729 lib/RT/Action/create_tickets.pm:741
+#: lib/RT/Action/CreateTickets.pm:1350 lib/RT/Action/CreateTickets.pm:1359 lib/RT/Action/CreateTickets.pm:605 lib/RT/Action/CreateTickets.pm:729 lib/RT/Action/CreateTickets.pm:741
 #. ($T::Tickets{$template_id}->id)
 #. ($T::Tickets{$template_id}->id)
 #. ($ticket->id)
@@ -7555,7 +7555,7 @@
 msgid "Update name"
 msgstr "更新帳號"
 
-#: lib/RT/Action/create_tickets.pm:750 lib/RT/Interface/Web.pm:584
+#: lib/RT/Action/CreateTickets.pm:750 lib/RT/Interface/Web.pm:584
 msgid "Update not recorded."
 msgstr "更新未被記錄"
 
@@ -7585,7 +7585,7 @@
 msgid "Update ticket #%1 (%2)"
 msgstr "更新申請單 #%1 (%2)"
 
-#: lib/RT/Action/create_tickets.pm:748 lib/RT/Interface/Web.pm:583
+#: lib/RT/Action/CreateTickets.pm:748 lib/RT/Interface/Web.pm:583
 msgid "Update type was neither correspondence nor comment."
 msgstr "更新的內容並非申請單回覆也不是評論"
 

Modified: rt/branches/3.999-DANGEROUS/t/api/system.t
==============================================================================
--- rt/branches/3.999-DANGEROUS/t/api/system.t	(original)
+++ rt/branches/3.999-DANGEROUS/t/api/system.t	Wed Jan 30 17:22:30 2008
@@ -13,7 +13,7 @@
 my $Rights = $s->available_rights;
 ok ($Rights, "Rights defined");
 ok ($Rights->{'AdminUsers'},"AdminUsers right found");
-ok ($Rights->{'create_ticket'},"create_ticket right found");
+ok ($Rights->{'CreateTicket'},"CreateTicket right found");
 ok ($Rights->{'AdminGroupMembership'},"ModifyGroupMembers right found");
 ok (!$Rights->{'CasdasdsreateTicket'},"bogus Right not found");
 

Modified: rt/branches/3.999-DANGEROUS/t/mail/gateway.t
==============================================================================
--- rt/branches/3.999-DANGEROUS/t/mail/gateway.t	(original)
+++ rt/branches/3.999-DANGEROUS/t/mail/gateway.t	Wed Jan 30 17:22:30 2008
@@ -113,7 +113,7 @@
     $everyone_group->load_system_internal_group( 'Everyone' );
     ok ($everyone_group->id, "Found group 'everyone'");
 
-    foreach( qw(create_ticket ReplyToTicket CommentOnTicket) ) {
+    foreach( qw(CreateTicket ReplyToTicket CommentOnTicket) ) {
         $everyone_group->principal_object->revoke_right(right => $_);
     }
 }
@@ -252,11 +252,11 @@
     ok( !$u->id, "user does not exist and was not Created by failed ticket submission");
 }
 
-diag "grant everybody with create_ticket right" if $ENV{'TEST_VERBOSE'};
+diag "grant everybody with CreateTicket right" if $ENV{'TEST_VERBOSE'};
 {
     ok( RT::Test->set_rights(
         { Principal => $everyone_group->principal_object,
-          right => [qw(create_ticket)],
+          right => [qw(CreateTicket)],
         },
     ), "Granted everybody the right to create tickets");
 }
@@ -311,7 +311,7 @@
 {
     ok( RT::Test->set_rights(
         { Principal => $everyone_group->principal_object,
-          right => [qw(create_ticket ReplyToTicket)],
+          right => [qw(CreateTicket ReplyToTicket)],
         },
     ), "Granted everybody the right to reply to tickets" );
 }
@@ -391,7 +391,7 @@
 {
     ok( RT::Test->set_rights(
         { Principal => $everyone_group->principal_object,
-          right => [qw(create_ticket ReplyToTicket CommentOnTicket)],
+          right => [qw(CreateTicket ReplyToTicket CommentOnTicket)],
         },
     ), "Granted everybody the right to comment on tickets");
 }
@@ -606,7 +606,7 @@
 }
 
 
-my ($val,$msg) = $everyone_group->principal_object->revoke_right(right => 'create_ticket');
+my ($val,$msg) = $everyone_group->principal_object->revoke_right(right => 'CreateTicket');
 ok ($val, $msg);
 
 SKIP: {

Modified: rt/branches/3.999-DANGEROUS/t/mail/gnupg-realmail.t
==============================================================================
--- rt/branches/3.999-DANGEROUS/t/mail/gnupg-realmail.t	(original)
+++ rt/branches/3.999-DANGEROUS/t/mail/gnupg-realmail.t	Wed Jan 30 17:22:30 2008
@@ -43,7 +43,7 @@
 
 RT::Test->set_rights(
     Principal => $everyone->principal_object,
-    right => ['create_ticket'],
+    right => ['CreateTicket'],
 );
 
 

Modified: rt/branches/3.999-DANGEROUS/t/mail/gnupg-reverification.t
==============================================================================
--- rt/branches/3.999-DANGEROUS/t/mail/gnupg-reverification.t	(original)
+++ rt/branches/3.999-DANGEROUS/t/mail/gnupg-reverification.t	Wed Jan 30 17:22:30 2008
@@ -31,7 +31,7 @@
 
 RT::Test->set_rights(
     Principal => $everyone,
-    right => ['create_ticket'],
+    right => ['CreateTicket'],
 );
 
 

Modified: rt/branches/3.999-DANGEROUS/t/shredder/02queue.t
==============================================================================
--- rt/branches/3.999-DANGEROUS/t/shredder/02queue.t	(original)
+++ rt/branches/3.999-DANGEROUS/t/shredder/02queue.t	Wed Jan 30 17:22:30 2008
@@ -79,7 +79,7 @@
     ok($group->id, 'loaded group');
 
     ($id, $msg) = $group->principal_object->grant_right(
-        right  => 'create_ticket',
+        right  => 'CreateTicket',
         object => $queue,
     );
     ok($id, 'granted right') or diag "error: $msg";

Modified: rt/branches/3.999-DANGEROUS/t/ticket/deffered_owner.t
==============================================================================
--- rt/branches/3.999-DANGEROUS/t/ticket/deffered_owner.t	(original)
+++ rt/branches/3.999-DANGEROUS/t/ticket/deffered_owner.t	Wed Jan 30 17:22:30 2008
@@ -24,7 +24,7 @@
 {
     RT::Test->set_rights(
         { Principal => $tester->principal_object,
-          right => [qw(SeeQueue ShowTicket create_ticket OwnTicket)],
+          right => [qw(SeeQueue ShowTicket CreateTicket OwnTicket)],
         },
         { Principal => $owner_role_group->principal_object,
           object => $queue,
@@ -49,7 +49,7 @@
 {
     RT::Test->set_rights(
         { Principal => $tester->principal_object,
-          right => [qw(SeeQueue ShowTicket create_ticket OwnTicket)],
+          right => [qw(SeeQueue ShowTicket CreateTicket OwnTicket)],
         },
     );
         my $ticket = RT::Model::Ticket->new(current_user => RT::CurrentUser->new(id => $tester->id) );
@@ -71,7 +71,7 @@
 {
     RT::Test->set_rights(
         { Principal => $tester->principal_object,
-          right => [qw(SeeQueue ShowTicket create_ticket)],
+          right => [qw(SeeQueue ShowTicket CreateTicket)],
         },
         { Principal => $queue->cc->principal_object,
           object => $queue,
@@ -96,7 +96,7 @@
 {
     RT::Test->set_rights(
         { Principal => $tester->principal_object,
-          right => [qw(SeeQueue ShowTicket create_ticket)],
+          right => [qw(SeeQueue ShowTicket CreateTicket)],
         },
     );
         my $ticket = RT::Model::Ticket->new(current_user => RT::CurrentUser->new(id => $tester->id) );

Modified: rt/branches/3.999-DANGEROUS/t/ticket/linking.t
==============================================================================
--- rt/branches/3.999-DANGEROUS/t/ticket/linking.t	(original)
+++ rt/branches/3.999-DANGEROUS/t/ticket/linking.t	Wed Jan 30 17:22:30 2008
@@ -92,7 +92,7 @@
 ok ($id,$msg);
 ($id,$msg) = $u1->principal_object->grant_right ( object => $q2, right => 'ShowTicket');
 ok ($id,$msg);
-($id,$msg) = $u1->principal_object->grant_right ( object => $q1, right => 'create_ticket');
+($id,$msg) = $u1->principal_object->grant_right ( object => $q1, right => 'CreateTicket');
 ok ($id,$msg);
 
 my $creator = RT::CurrentUser->new(id => $u1->id);
@@ -208,7 +208,7 @@
 ok(!$id,$msg);
 is(link_count($filename), 0, "scrips ok");
 
-($id,$msg) = $u1->principal_object->grant_right ( object => $q2, right => 'create_ticket');
+($id,$msg) = $u1->principal_object->grant_right ( object => $q2, right => 'CreateTicket');
 ok ($id,$msg);
 ($id,$msg) = $u1->principal_object->grant_right ( object => $q2, right => 'ModifyTicket');
 ok ($id,$msg);

Modified: rt/branches/3.999-DANGEROUS/t/web/cf_access.t
==============================================================================
--- rt/branches/3.999-DANGEROUS/t/web/cf_access.t	(original)
+++ rt/branches/3.999-DANGEROUS/t/web/cf_access.t	Wed Jan 30 17:22:30 2008
@@ -59,7 +59,7 @@
 my $tester = RT::Test->load_or_create_user( name => 'tester', password => '123456' );
 RT::Test->set_rights(
     { Principal => $tester->principal_object,
-      right => [qw(SeeQueue ShowTicket create_ticket)],
+      right => [qw(SeeQueue ShowTicket CreateTicket)],
     },
 );
 ok $m->login( $tester->name, 123456), 'logged in';
@@ -91,7 +91,7 @@
 
 RT::Test->set_rights(
     { Principal => $tester->principal_object,
-      right => [qw(SeeQueue ShowTicket create_ticket SeeCustomField)],
+      right => [qw(SeeQueue ShowTicket CreateTicket SeeCustomField)],
     },
 );
 
@@ -125,7 +125,7 @@
 
 RT::Test->set_rights(
     { Principal => $tester->principal_object,
-      right => [qw(SeeQueue ShowTicket create_ticket SeeCustomField ModifyCustomField)],
+      right => [qw(SeeQueue ShowTicket CreateTicket SeeCustomField ModifyCustomField)],
     },
 );
 

Modified: rt/branches/3.999-DANGEROUS/t/web/crypt-gnupg.t
==============================================================================
--- rt/branches/3.999-DANGEROUS/t/web/crypt-gnupg.t	(original)
+++ rt/branches/3.999-DANGEROUS/t/web/crypt-gnupg.t	Wed Jan 30 17:22:30 2008
@@ -58,7 +58,7 @@
 
 RT::Test->set_rights(
     Principal => 'Everyone',
-    right => ['create_ticket', 'ShowTicket', 'SeeQueue', 'ModifyTicket'],
+    right => ['CreateTicket', 'ShowTicket', 'SeeQueue', 'ModifyTicket'],
 );
 
 my ($baseurl, $m) = RT::Test->started_ok;
@@ -349,7 +349,7 @@
 
 # now test the OwnernameKey and RequestorsKey fields
 my $nokey = RT::Test->load_or_create_user(name => 'nokey', email => 'nokey at example.com');
-$nokey->principal_object->grant_right(right => 'create_ticket');
+$nokey->principal_object->grant_right(right => 'CreateTicket');
 $nokey->principal_object->grant_right(right => 'OwnTicket');
 
 my $tick = RT::Model::Ticket->new(current_user => RT->system_user );

Modified: rt/branches/3.999-DANGEROUS/t/web/gnupg-outgoing.t
==============================================================================
--- rt/branches/3.999-DANGEROUS/t/web/gnupg-outgoing.t	(original)
+++ rt/branches/3.999-DANGEROUS/t/web/gnupg-outgoing.t	Wed Jan 30 17:22:30 2008
@@ -39,7 +39,7 @@
 
 RT::Test->set_rights(
     Principal => 'Everyone',
-    right => ['create_ticket', 'ShowTicket', 'SeeQueue', 'ReplyToTicket', 'ModifyTicket'],
+    right => ['CreateTicket', 'ShowTicket', 'SeeQueue', 'ReplyToTicket', 'ModifyTicket'],
 );
 
 my ($baseurl, $m) = RT::Test->started_ok;

Modified: rt/branches/3.999-DANGEROUS/t/web/gnupg-select-keys-on-create.t
==============================================================================
--- rt/branches/3.999-DANGEROUS/t/web/gnupg-select-keys-on-create.t	(original)
+++ rt/branches/3.999-DANGEROUS/t/web/gnupg-select-keys-on-create.t	Wed Jan 30 17:22:30 2008
@@ -37,7 +37,7 @@
 
 RT::Test->set_rights(
     Principal => 'Everyone',
-    right => ['create_ticket', 'ShowTicket', 'SeeQueue', 'ReplyToTicket', 'ModifyTicket'],
+    right => ['CreateTicket', 'ShowTicket', 'SeeQueue', 'ReplyToTicket', 'ModifyTicket'],
 );
 
 my ($baseurl, $m) = RT::Test->started_ok;

Modified: rt/branches/3.999-DANGEROUS/t/web/gnupg-select-keys-on-update.t
==============================================================================
--- rt/branches/3.999-DANGEROUS/t/web/gnupg-select-keys-on-update.t	(original)
+++ rt/branches/3.999-DANGEROUS/t/web/gnupg-select-keys-on-update.t	Wed Jan 30 17:22:30 2008
@@ -37,7 +37,7 @@
 
 RT::Test->set_rights(
     Principal => 'Everyone',
-    right => ['create_ticket', 'ShowTicket', 'SeeQueue', 'ReplyToTicket', 'ModifyTicket'],
+    right => ['CreateTicket', 'ShowTicket', 'SeeQueue', 'ReplyToTicket', 'ModifyTicket'],
 );
 
 my ($baseurl, $m) = RT::Test->started_ok;

Modified: rt/branches/3.999-DANGEROUS/t/web/ticket_owner.t
==============================================================================
--- rt/branches/3.999-DANGEROUS/t/web/ticket_owner.t	(original)
+++ rt/branches/3.999-DANGEROUS/t/web/ticket_owner.t	Wed Jan 30 17:22:30 2008
@@ -22,7 +22,7 @@
 RT::Test->started_ok;
 
 ok( RT::Test->set_rights(
-    { Principal => $user_a, right => [qw(SeeQueue ShowTicket create_ticket ReplyToTicket)] },
+    { Principal => $user_a, right => [qw(SeeQueue ShowTicket CreateTicket ReplyToTicket)] },
     { Principal => $user_b, right => [qw(SeeQueue ShowTicket OwnTicket)] },
 ), 'set rights');
 
@@ -144,7 +144,7 @@
 }
 
 ok( RT::Test->set_rights(
-    { Principal => $user_a, right => [qw(SeeQueue ShowTicket create_ticket OwnTicket)] },
+    { Principal => $user_a, right => [qw(SeeQueue ShowTicket CreateTicket OwnTicket)] },
     { Principal => $user_b, right => [qw(SeeQueue ShowTicket OwnTicket)] },
 ), 'set rights');
 
@@ -184,7 +184,7 @@
 }
 
 ok( RT::Test->set_rights(
-    { Principal => $user_a, right => [qw(SeeQueue ShowTicket create_ticket TakeTicket)] },
+    { Principal => $user_a, right => [qw(SeeQueue ShowTicket CreateTicket TakeTicket)] },
 ), 'set rights');
 
 diag "TakeTicket require OwnTicket to work";
@@ -205,7 +205,7 @@
 }
 
 ok( RT::Test->set_rights(
-    { Principal => $user_a, right => [qw(SeeQueue ShowTicket create_ticket OwnTicket TakeTicket)] },
+    { Principal => $user_a, right => [qw(SeeQueue ShowTicket CreateTicket OwnTicket TakeTicket)] },
     { Principal => $user_b, right => [qw(SeeQueue ShowTicket OwnTicket)] },
 ), 'set rights');
 
@@ -249,7 +249,7 @@
 }
 
 ok( RT::Test->set_rights(
-    { Principal => $user_a, right => [qw(SeeQueue ShowTicket create_ticket StealTicket)] },
+    { Principal => $user_a, right => [qw(SeeQueue ShowTicket CreateTicket StealTicket)] },
     { Principal => $user_b, right => [qw(SeeQueue ShowTicket OwnTicket)] },
 ), 'set rights');
 
@@ -272,7 +272,7 @@
 }
 
 ok( RT::Test->set_rights(
-    { Principal => $user_a, right => [qw(SeeQueue ShowTicket create_ticket OwnTicket StealTicket)] },
+    { Principal => $user_a, right => [qw(SeeQueue ShowTicket CreateTicket OwnTicket StealTicket)] },
     { Principal => $user_b, right => [qw(SeeQueue ShowTicket OwnTicket)] },
 ), 'set rights');
 
@@ -316,7 +316,7 @@
 }
 
 ok( RT::Test->set_rights(
-    { Principal => $user_a, right => [qw(SeeQueue ShowTicket create_ticket OwnTicket TakeTicket StealTicket)] },
+    { Principal => $user_a, right => [qw(SeeQueue ShowTicket CreateTicket OwnTicket TakeTicket StealTicket)] },
     { Principal => $user_b, right => [qw(SeeQueue ShowTicket OwnTicket)] },
 ), 'set rights');
 

Modified: rt/branches/3.999-DANGEROUS/t/web/ticket_seen.t
==============================================================================
--- rt/branches/3.999-DANGEROUS/t/web/ticket_seen.t	(original)
+++ rt/branches/3.999-DANGEROUS/t/web/ticket_seen.t	Wed Jan 30 17:22:30 2008
@@ -20,7 +20,7 @@
 ok $user_b && $user_b->id, 'loaded or created user';
 
 ok( RT::Test->set_rights(
-    { Principal => $user_a, right => [qw(SeeQueue ShowTicket create_ticket OwnTicket ModifyTicket)] },
+    { Principal => $user_a, right => [qw(SeeQueue ShowTicket CreateTicket OwnTicket ModifyTicket)] },
     { Principal => $user_b, right => [qw(SeeQueue ShowTicket ReplyToTicket)] },
 ), 'set rights');
 RT::Test->started_ok;


More information about the Rt-commit mailing list