Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwclouser@mozilla.com <wclouser@mozilla.com@4eb1ac78-321c-0410-a911-ec516a8615a5>2009-06-24 15:42:49 (GMT)
committer wclouser@mozilla.com <wclouser@mozilla.com@4eb1ac78-321c-0410-a911-ec516a8615a5>2009-06-24 15:42:49 (GMT)
commita78b59287c44d3e0fa7d69ee05cf6954feb9cbb2 (patch)
tree17d5b851208d824d4a9f86e21f8ee1ed464ac1ec
parent9b6a26f1f75da50c6117f79cf69a3cfac635f718 (diff)
update page list in localizers' controller
git-svn-id: http://svn.mozilla.org/addons/trunk@28381 4eb1ac78-321c-0410-a911-ec516a8615a5
-rw-r--r--site/app/controllers/localizers_controller.php33
1 files changed, 27 insertions, 6 deletions
diff --git a/site/app/controllers/localizers_controller.php b/site/app/controllers/localizers_controller.php
index 4585333..4662755 100644
--- a/site/app/controllers/localizers_controller.php
+++ b/site/app/controllers/localizers_controller.php
@@ -350,22 +350,43 @@ class LocalizersController extends AppController
//This is not automatic because not all pages should be translated, yo
$pages = array(
- 0 => array('page' => 'developer_agreement.thtml',
+ 0 => array('page' => 'about.thtml',
+ 'url' => '/pages/about'
+ ),
+ 1 => array('page' => 'collector_faq.thtml',
+ 'url' => '/pages/collector_faq'
+ ),
+ 2 => array('page' => 'collector_features.thtml',
+ 'url' => '/pages/collector_features'
+ ),
+ 3 => array('page' => 'collector_firstrun.thtml',
+ 'url' => '/pages/collector_firstrun'
+ ),
+ 4 => array('page' => 'collector.thtml',
+ 'url' => '/pages/collector'
+ ),
+ 5 => array('page' => 'developer_agreement.thtml',
'url' => '/developers/add'
),
- 1 => array('page' => 'error404.thtml',
+ 6 => array('page' => 'developer_faq.thtml',
+ 'url' => '/pages/developer_faq'
+ ),
+ 7 => array('page' => 'error404.thtml',
'url' => '/thispage/doesnotexist'
),
- 2 => array('page' => 'nomination.thtml',
+ 8 => array('page' => 'nomination.thtml',
'url' => ''
),
- 3 => array('page' => 'policy.thtml',
+ 9 => array('page' => 'policy.thtml',
'url' => '/pages/policy'
),
- 4 => array('page' => 'sandbox.thtml',
+ 10=> array('page' => 'sandbox.thtml',
'url' => '/pages/sandbox'
),
- 5 => array('page' => 'submission_help.thtml',
+ 11=> array('page' => 'statistics_help.thtml',
+ 'url' => ''
+ ),
+ 12=> array('page' => 'submission_help.thtml',
'url' => '/pages/submissionhelp'
)
);