-
Notifications
You must be signed in to change notification settings - Fork 0
/
Persian_utf-8 [xmlsitemap].php
101 lines (86 loc) · 4.17 KB
/
Persian_utf-8 [xmlsitemap].php
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?php
###############################################################################
# persian_utf-8.php
#
# This is the Persian language file for Geeklog xmlsitemap plugin
# Special thanks to Mahdi Montazeri for his work on this project
#
# Copyright (C) 2018 geeklog.ir
# info AT mahdimontazeri DOT com
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
###############################################################################
$LANG_CHARSET = 'utf-8';
$LANG_ISO639_1 = 'fa';
$LANG_DIRECTION = 'rtl';
###############################################################################
# Array Format:
# $LANGXX[YY]: $LANG - variable name
# XX - file id number
# YY - phrase id number
###############################################################################
###############################################################################
# USER PHRASES - These are file phrases used in end user scripts
###############################################################################
###############################################################################
# lib-common.php
if (stripos($_SERVER['PHP_SELF'], basename(__FILE__)) !== false) {
die('This file can not be used on its own.');
}
global $LANG32;
$LANG_XMLSMAP = array(
'plugin' => 'نقشه سایت اکس ام ال',
'admin' => 'مدیریت نقشه سایت اکس ام ال',
);
// Localization of the Admin Configuration UI
$LANG_configsections['xmlsitemap'] = array(
'label' => 'نقشه سایت اکس ام ال',
'title' => 'پیکربندی نقشه سایت اکس ام ال'
);
$LANG_confignames['xmlsitemap'] = array(
'sitemap_file' => 'نام پرونده نقشه سایت',
'mobile_sitemap_file' => 'نام پرونده نقشه سایت موبایلی',
'types' => 'محتویات نقشه سایت',
'exclude' => 'افزونه های مستثنی از نقشه سایت',
'lastmod' => 'انواع محتوا برای در برداشتن عنصر lastmod',
'priorities' => 'اولویت',
'frequencies' => 'بسامد',
'ping_google' => 'ارسال پینگ به گوگل',
'ping_bing' => 'ارسال پینگ به بینگ',
);
$LANG_configsubgroups['xmlsitemap'] = array(
'sg_main' => 'تنظیمات اصلی',
);
$LANG_tab['xmlsitemap'] = array(
'tab_main' => 'تنظیمات اصلی نقشه سایت اکس ام ال',
'tab_pri' => 'اولویت',
'tab_freq' => 'بروزرسانی بسامد',
'tab_ping' => 'پینگ',
);
$LANG_fs['xmlsitemap'] = array(
'fs_main' => 'تنظیمات اصلی نقشه سایت اکس ام ال',
'fs_pri' => 'اولویت (پیشفرض = 0.5, پایین ترین = 0.0, بالا ترین = 1.0)',
'fs_freq' => 'بروزرسانی بسامد',
'fs_ping' => 'ارسال پینگ برای بروزرسانی نقشه سایت',
);
// Note: entries 0, 1, 9, and 12 are the same as in $LANG_configselects['Core']
$LANG_configselects['xmlsitemap'] = array(
0 => array('True' => 1, 'False' => 0),
1 => array('True' => TRUE, 'False' => FALSE),
9 => array('Forward to page' => 'item', 'Display List' => 'list', 'Display Home' => 'home', 'Display Admin' => 'admin'),
12 => array('No access' => 0, 'Read-Only' => 2, 'Read-Write' => 3),
20 => array('always' => 'always', 'hourly' => 'hourly', 'daily' => 'daily', 'weekly' => 'weekly', 'monthly' => 'monthly', 'yearly' => 'yearly', 'never' => 'never', 'hidden' => 'hidden'),
);