blob: 735fdf25771c2afe1264f0d04df77be5dc4fb1ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php
// Heading
$_['heading_title'] = 'SEO URL';
// Text
$_['text_success'] = 'Success: You have modified SEO URL!';
$_['text_list'] = 'SEO URL List';
$_['text_add'] = 'Add SEO URL';
$_['text_edit'] = 'Edit SEO URL';
$_['text_filter'] = 'Filter';
$_['text_default'] = 'Default';
// Column
$_['column_query'] = 'Query';
$_['column_keyword'] = 'Keyword';
$_['column_store'] = 'Store';
$_['column_language'] = 'Language';
$_['column_action'] = 'Action';
// Entry
$_['entry_query'] = 'Query';
$_['entry_keyword'] = 'Keyword';
$_['entry_store'] = 'Store';
$_['entry_language'] = 'Language';
// Error
$_['error_permission'] = 'Warning: You do not have permission to modify SEO URL!';
$_['error_query'] = 'Query must be between 3 and 64 characters!';
$_['error_keyword'] = 'Keyword must be between 3 and 64 characters!';
$_['error_exists'] = 'Keyword already in use!';
|