Skip to content

Commit fa95862

Browse files
author
Cari Spruiell
committed
MAGETWO-44459: Check javascript function calls and labels are translatable
- revert unintended file deletions
1 parent 462a81d commit fa95862

24 files changed

+861
-0
lines changed

pub/errors/404.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
/**
3+
* Copyright © 2015 Magento. All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
6+
7+
require_once 'processorFactory.php';
8+
9+
$processorFactory = new \Magento\Framework\Error\ProcessorFactory();
10+
$processor = $processorFactory->createProcessor();
11+
$response = $processor->process404();
12+
$response->sendResponse();

pub/errors/503.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
/**
3+
* Copyright © 2015 Magento. All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
6+
7+
require_once 'processorFactory.php';
8+
9+
$processorFactory = new \Magento\Framework\Error\ProcessorFactory();
10+
$processor = $processorFactory->createProcessor();
11+
$response = $processor->process503();
12+
$response->sendResponse();

pub/errors/default/404.phtml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
/**
3+
* Copyright © 2015 Magento. All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
6+
?>
7+
8+
<h1>404 error: Page not found.</h1>

pub/errors/default/503.phtml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
/**
3+
* Copyright © 2015 Magento. All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
6+
?>
7+
8+
<h1>Service Temporarily Unavailable</h1>
9+
<p>The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.</p>

pub/errors/default/css/styles.css

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pub/errors/default/images/favicon.ico

1.12 KB
Binary file not shown.
1009 Bytes
Loading
1021 Bytes
Loading
1 KB
Loading

pub/errors/default/images/logo.gif

3.52 KB
Loading

0 commit comments

Comments
 (0)