mirror of
https://github.com/Daniel15/zURL
synced 2024-11-22 16:32:11 +00:00
16 lines
380 B
PHP
16 lines
380 B
PHP
<?php
|
|
defined('SYSPATH') OR die('No direct access allowed.');
|
|
|
|
return array
|
|
(
|
|
'url' => array
|
|
(
|
|
'url' => 'Please enter a valid URL',
|
|
'uribl' => 'Sorry, this URL is blacklisted and cannot be shortened with this service. :param1',
|
|
),
|
|
'alias' => array
|
|
(
|
|
'alias_available' => 'Sorry, the alias ":param1" is not available. Please choose another one.'
|
|
)
|
|
);
|
|
?>
|