Version Description
Download this release
Release Info
Developer | arnee |
Plugin | Google XML Sitemaps |
Version | 3.1.0.1 |
Comparing to | |
See all releases |
Code changes from version 3.1 to 3.1.0.1
- documentation.txt +4 -0
- img/sitemap.js +109 -0
- lang/sitemap-de_DE.mo +0 -0
- lang/sitemap-de_DE.po +22 -7
- lang/sitemap-ko_KR.mo +0 -0
- lang/sitemap-ko_KR.po +48 -10
- lang/sitemap-tr_TR.mo +0 -0
- lang/sitemap-tr_TR.po +688 -597
- lang/sitemap-zh_CN.mo +0 -0
- lang/sitemap-zh_CN.po +87 -19
- lang/sitemap.pot +779 -764
- readme-tr_TR.txt → readme-ar_AR.txt +0 -0
- readme.txt +9 -1
- sitemap-core.php +15 -12
- sitemap-ui.php +11 -120
- sitemap.php +13 -3
documentation.txt
CHANGED
@@ -177,6 +177,10 @@
|
|
177 |
Fixed background building bug in WP 2.1
|
178 |
Removed auto-update plugin link for WP < 2.5
|
179 |
2008-05-22 3.1 Marked as 3.1 stable, updated documentation
|
|
|
|
|
|
|
|
|
180 |
|
181 |
|
182 |
|
177 |
Fixed background building bug in WP 2.1
|
178 |
Removed auto-update plugin link for WP < 2.5
|
179 |
2008-05-22 3.1 Marked as 3.1 stable, updated documentation
|
180 |
+
2008-05-27 3.1.0.1 Extracted UI JS to external file
|
181 |
+
Enabled the option to include following pages of multi-page posts
|
182 |
+
Script tries to raise memory and time limit if active
|
183 |
+
|
184 |
|
185 |
|
186 |
|
img/sitemap.js
ADDED
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
|
3 |
+
$Id: sitemap.js 48032 2008-05-27 14:32:06Z arnee $
|
4 |
+
|
5 |
+
*/
|
6 |
+
|
7 |
+
function sm_addPage(url,priority,changeFreq,lastChanged) {
|
8 |
+
|
9 |
+
var table = document.getElementById('sm_pageTable').getElementsByTagName('TBODY')[0];
|
10 |
+
var ce = function(ele) { return document.createElement(ele) };
|
11 |
+
var tr = ce('TR');
|
12 |
+
|
13 |
+
var td = ce('TD');
|
14 |
+
var iUrl = ce('INPUT');
|
15 |
+
iUrl.type="text";
|
16 |
+
iUrl.style.width='95%';
|
17 |
+
iUrl.name="sm_pages_ur[]";
|
18 |
+
if(url) iUrl.value=url;
|
19 |
+
td.appendChild(iUrl);
|
20 |
+
tr.appendChild(td);
|
21 |
+
|
22 |
+
td = ce('TD');
|
23 |
+
td.style.width='150px';
|
24 |
+
var iPrio = ce('SELECT');
|
25 |
+
iPrio.style.width='95%';
|
26 |
+
iPrio.name="sm_pages_pr[]";
|
27 |
+
for(var i=0; i <priorities.length; i++) {
|
28 |
+
var op = ce('OPTION');
|
29 |
+
op.text = priorities[i];
|
30 |
+
op.value = priorities[i];
|
31 |
+
try {
|
32 |
+
iPrio.add(op, null); // standards compliant; doesn't work in IE
|
33 |
+
} catch(ex) {
|
34 |
+
iPrio.add(op); // IE only
|
35 |
+
}
|
36 |
+
if(priority && priority == op.value) {
|
37 |
+
iPrio.selectedIndex = i;
|
38 |
+
}
|
39 |
+
}
|
40 |
+
td.appendChild(iPrio);
|
41 |
+
tr.appendChild(td);
|
42 |
+
|
43 |
+
td = ce('TD');
|
44 |
+
td.style.width='150px';
|
45 |
+
var iFreq = ce('SELECT');
|
46 |
+
iFreq.name="sm_pages_cf[]";
|
47 |
+
iFreq.style.width='95%';
|
48 |
+
for(var i=0; i<changeFreqVals.length; i++) {
|
49 |
+
var op = ce('OPTION');
|
50 |
+
op.text = changeFreqNames[i];
|
51 |
+
op.value = changeFreqVals[i];
|
52 |
+
try {
|
53 |
+
iFreq.add(op, null); // standards compliant; doesn't work in IE
|
54 |
+
} catch(ex) {
|
55 |
+
iFreq.add(op); // IE only
|
56 |
+
}
|
57 |
+
|
58 |
+
if(changeFreq && changeFreq == op.value) {
|
59 |
+
iFreq.selectedIndex = i;
|
60 |
+
}
|
61 |
+
}
|
62 |
+
td.appendChild(iFreq);
|
63 |
+
tr.appendChild(td);
|
64 |
+
|
65 |
+
var td = ce('TD');
|
66 |
+
td.style.width='150px';
|
67 |
+
var iChanged = ce('INPUT');
|
68 |
+
iChanged.type="text";
|
69 |
+
iChanged.name="sm_pages_lm[]";
|
70 |
+
iChanged.style.width='95%';
|
71 |
+
if(lastChanged) iChanged.value=lastChanged;
|
72 |
+
td.appendChild(iChanged);
|
73 |
+
tr.appendChild(td);
|
74 |
+
|
75 |
+
var td = ce('TD');
|
76 |
+
td.style.textAlign="center";
|
77 |
+
td.style.width='5px';
|
78 |
+
var iAction = ce('A');
|
79 |
+
iAction.innerHTML = 'X';
|
80 |
+
iAction.href="javascript:void(0);"
|
81 |
+
iAction.onclick = function() { table.removeChild(tr); };
|
82 |
+
td.appendChild(iAction);
|
83 |
+
tr.appendChild(td);
|
84 |
+
|
85 |
+
var mark = ce('INPUT');
|
86 |
+
mark.type="hidden";
|
87 |
+
mark.name="sm_pages_mark[]";
|
88 |
+
mark.value="true";
|
89 |
+
tr.appendChild(mark);
|
90 |
+
|
91 |
+
|
92 |
+
var firstRow = table.getElementsByTagName('TR')[1];
|
93 |
+
if(firstRow) {
|
94 |
+
var firstCol = (firstRow.childNodes[1]?firstRow.childNodes[1]:firstRow.childNodes[0]);
|
95 |
+
if(firstCol.colSpan>1) {
|
96 |
+
firstRow.parentNode.removeChild(firstRow);
|
97 |
+
}
|
98 |
+
}
|
99 |
+
var cnt = table.getElementsByTagName('TR').length;
|
100 |
+
if(cnt%2) tr.className="alternate";
|
101 |
+
|
102 |
+
table.appendChild(tr);
|
103 |
+
}
|
104 |
+
|
105 |
+
function sm_loadPages() {
|
106 |
+
for(var i=0; i<pages.length; i++) {
|
107 |
+
sm_addPage(pages[i].url,pages[i].priority,pages[i].changeFreq,pages[i].lastChanged);
|
108 |
+
}
|
109 |
+
}
|
lang/sitemap-de_DE.mo
CHANGED
Binary file
|
lang/sitemap-de_DE.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: sitemap\n"
|
4 |
"POT-Creation-Date: \n"
|
5 |
-
"PO-Revision-Date: 2008-05-
|
6 |
"Last-Translator: Arne Brachhold <http://www.arnebrachhold.de>\n"
|
7 |
"Language-Team: Arne Brachhold <himself@arnebrachhold.de>\n"
|
8 |
"MIME-Version: 1.0\n"
|
@@ -71,8 +71,8 @@ msgid "No thanks, please don't bug me anymore!"
|
|
71 |
msgstr "Nein danke, bitte nicht mehr nerven! "
|
72 |
|
73 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:67
|
74 |
-
msgid "Your sitemap is
|
75 |
-
msgstr "Die Sietemap wird im Moment neu erzeugt. Abhängig von der Anzahl Ihrer Beiträge kann dies einige Sekunden dauern."
|
76 |
|
77 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:69
|
78 |
#, php-format
|
@@ -104,6 +104,21 @@ msgstr "Beim Speichern der robots.txt Datei ist ein Fehler aufgetreten"
|
|
104 |
msgid "The default configuration was restored."
|
105 |
msgstr "Die Standard Konfiguration wurde wieder hergestellt."
|
106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
msgid "open"
|
108 |
msgstr "öffnen"
|
109 |
|
@@ -499,13 +514,13 @@ msgstr "Inhalt der Sitemap"
|
|
499 |
msgid "Include homepage"
|
500 |
msgstr "Startseite"
|
501 |
|
502 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:1013
|
503 |
-
msgid "Include all pages of multi-page posts (<!--nextpage-->)"
|
504 |
-
msgstr "Folgeseiten von Beiträgen (<!--nextpage-->)"
|
505 |
-
|
506 |
msgid "Include posts"
|
507 |
msgstr "Beiträge"
|
508 |
|
|
|
|
|
|
|
|
|
509 |
msgid "Include static pages"
|
510 |
msgstr "Statische Seiten"
|
511 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: sitemap\n"
|
4 |
"POT-Creation-Date: \n"
|
5 |
+
"PO-Revision-Date: 2008-05-27 16:28+0100\n"
|
6 |
"Last-Translator: Arne Brachhold <http://www.arnebrachhold.de>\n"
|
7 |
"Language-Team: Arne Brachhold <himself@arnebrachhold.de>\n"
|
8 |
"MIME-Version: 1.0\n"
|
71 |
msgstr "Nein danke, bitte nicht mehr nerven! "
|
72 |
|
73 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:67
|
74 |
+
msgid "Your sitemap is being refreshed at the moment. Depending on your blog size this might take some time!"
|
75 |
+
msgstr "Die Sietemap wird im Moment neu erzeugt. Abhängig von der Anzahl Ihrer Beiträge kann dies einige Sekunden dauern. "
|
76 |
|
77 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:69
|
78 |
#, php-format
|
104 |
msgid "The default configuration was restored."
|
105 |
msgstr "Die Standard Konfiguration wurde wieder hergestellt."
|
106 |
|
107 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:374
|
108 |
+
#, php-format
|
109 |
+
msgid "There is a new version of %1$s available. <a href=\"%2$s\">Download version %3$s here</a>."
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:376
|
113 |
+
#, php-format
|
114 |
+
msgid "There is a new version of %1$s available. <a href=\"%2$s\">Download version %3$s here</a> <em>automatic upgrade unavailable for this plugin</em>."
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:378
|
118 |
+
#, php-format
|
119 |
+
msgid "There is a new version of %1$s available. <a href=\"%2$s\">Download version %3$s here</a> or <a href=\"%4$s\">upgrade automatically</a>."
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
msgid "open"
|
123 |
msgstr "öffnen"
|
124 |
|
514 |
msgid "Include homepage"
|
515 |
msgstr "Startseite"
|
516 |
|
|
|
|
|
|
|
|
|
517 |
msgid "Include posts"
|
518 |
msgstr "Beiträge"
|
519 |
|
520 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:1013
|
521 |
+
msgid "Include following pages of multi-page posts (<!--nextpage-->)"
|
522 |
+
msgstr "Folgeseiten von Beiträgen (<!--nextpage-->)"
|
523 |
+
|
524 |
msgid "Include static pages"
|
525 |
msgstr "Statische Seiten"
|
526 |
|
lang/sitemap-ko_KR.mo
CHANGED
Binary file
|
lang/sitemap-ko_KR.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
"POT-Creation-Date: \n"
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: 김승엽 <unfusion>\n"
|
7 |
"Language-Team: Wordpress Korea <unfusion95@gmail.com>\n"
|
8 |
"MIME-Version: 1.0\n"
|
@@ -17,7 +17,7 @@ msgstr "코멘트 갯수"
|
|
17 |
|
18 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:858
|
19 |
msgid "Uses the number of comments of the post to calculate the priority"
|
20 |
-
msgstr "포스트의 코멘트 갯수를 이용해 우선순위를
|
21 |
|
22 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:918
|
23 |
msgid "Comment Average"
|
@@ -45,7 +45,7 @@ msgstr "XML-사이트 맵"
|
|
45 |
|
46 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2600
|
47 |
msgid "Thank you very much for your donation. You help me to continue support and development of this plugin and other free software!"
|
48 |
-
msgstr "
|
49 |
|
50 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2600
|
51 |
msgid "Hide this notice"
|
@@ -158,7 +158,7 @@ msgstr "http://unfusion.kunsan.ac.kr/word"
|
|
158 |
|
159 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2895
|
160 |
msgid "Sitemap Resources:"
|
161 |
-
msgstr "
|
162 |
|
163 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2897
|
164 |
msgid "Webmaster Tools"
|
@@ -176,13 +176,17 @@ msgstr "사이트 익스플로러"
|
|
176 |
msgid "Search Blog"
|
177 |
msgstr "블로그 검색"
|
178 |
|
|
|
|
|
|
|
|
|
179 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2903
|
180 |
msgid "Sitemaps Protocol"
|
181 |
msgstr "사이트 맵 프로토콜"
|
182 |
|
183 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2904
|
184 |
msgid "Official Sitemaps FAQ"
|
185 |
-
msgstr "
|
186 |
|
187 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2905
|
188 |
msgid "My Sitemaps FAQ"
|
@@ -255,6 +259,19 @@ msgstr "YAHOO에 통보하는데 %time% 초가 걸렸습니다. 만약 이 기
|
|
255 |
msgid "There was a problem while notifying YAHOO. <a href=\"%s\">View result</a>"
|
256 |
msgstr "YAHOO에 통보하는 동안 문제가 발생했습니다. <a href=\"%s\">결과 보기</a>"
|
257 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2988
|
259 |
msgid "Ask.com was <b>successfully notified</b> about changes."
|
260 |
msgstr "Ask.com에 변경사항을 <b>성공적으로</b> 통보하였습니다."
|
@@ -359,6 +376,15 @@ msgstr "블로그의 업데이트를 Google에 통보"
|
|
359 |
msgid "No registration required, but you can join the <a href=\"%s\">Google Webmaster Tools</a> to check crawling statistics."
|
360 |
msgstr "등록이 필요하진 않지만, <a href=\"%s\">구글 웹마스터 툴</a> 에 가입하면 수집 통계를 확인할 수 있습니다."
|
361 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
362 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3088
|
363 |
msgid "Notify Ask.com about updates of your Blog"
|
364 |
msgstr "블로그의 업데이트를 Ask.com에 통보"
|
@@ -371,10 +397,14 @@ msgstr "등록 필요 없음."
|
|
371 |
msgid "Notify YAHOO about updates of your Blog"
|
372 |
msgstr "블로그의 업데이트를 YAHOO에 통보"
|
373 |
|
374 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
|
|
|
|
|
|
|
|
375 |
#, php-format
|
376 |
-
msgid "
|
377 |
-
msgstr "
|
378 |
|
379 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3099
|
380 |
#, php-format
|
@@ -449,6 +479,14 @@ msgstr "MySQL 스탠다드 모드를 가능하게 함. MySQL 에러가 발생할
|
|
449 |
msgid "Build the sitemap in a background process (You don't have to wait when you save a post)"
|
450 |
msgstr "백그라운드 작업으로 사이트 맵을 생성 (포스트를 저장할 때 기다리지 않아도 됩니다.)"
|
451 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
452 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3144
|
453 |
msgid "Additional pages"
|
454 |
msgstr "페이지 추가"
|
@@ -600,7 +638,7 @@ msgstr "수집 빈도 변경"
|
|
600 |
|
601 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3463
|
602 |
msgid "Please note that the value of this tag is considered a hint and not a command. Even though search engine crawlers consider this information when making decisions, they may crawl pages marked \"hourly\" less frequently than that, and they may crawl pages marked \"yearly\" more frequently than that. It is also likely that crawlers will periodically crawl pages marked \"never\" so that they can handle unexpected changes to those pages."
|
603 |
-
msgstr "
|
604 |
|
605 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3469
|
606 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3535
|
@@ -623,7 +661,7 @@ msgstr "카테고리들"
|
|
623 |
|
624 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3493
|
625 |
msgid "The current archive of this month (Should be the same like your homepage)"
|
626 |
-
msgstr "
|
627 |
|
628 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3499
|
629 |
msgid "Older archives (Changes only if you edit an old post)"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
"POT-Creation-Date: \n"
|
5 |
+
"PO-Revision-Date: 2008-04-15 13:17+0900\n"
|
6 |
"Last-Translator: 김승엽 <unfusion>\n"
|
7 |
"Language-Team: Wordpress Korea <unfusion95@gmail.com>\n"
|
8 |
"MIME-Version: 1.0\n"
|
17 |
|
18 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:858
|
19 |
msgid "Uses the number of comments of the post to calculate the priority"
|
20 |
+
msgstr "포스트의 코멘트 갯수를 이용해 우선순위를 계산합니다."
|
21 |
|
22 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:918
|
23 |
msgid "Comment Average"
|
45 |
|
46 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2600
|
47 |
msgid "Thank you very much for your donation. You help me to continue support and development of this plugin and other free software!"
|
48 |
+
msgstr "기부에 정말 감사드립니다. 제가 이 플러그인이나 다른 무료 프로그램을 계속 작성하고 지원할 수 있도록 도와주십시오!"
|
49 |
|
50 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2600
|
51 |
msgid "Hide this notice"
|
158 |
|
159 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2895
|
160 |
msgid "Sitemap Resources:"
|
161 |
+
msgstr "사이트맵 Resources:"
|
162 |
|
163 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2897
|
164 |
msgid "Webmaster Tools"
|
176 |
msgid "Search Blog"
|
177 |
msgstr "블로그 검색"
|
178 |
|
179 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2898
|
180 |
+
msgid "Webmaster Center Blog"
|
181 |
+
msgstr "웹마스터 센터 블로그"
|
182 |
+
|
183 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2903
|
184 |
msgid "Sitemaps Protocol"
|
185 |
msgstr "사이트 맵 프로토콜"
|
186 |
|
187 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2904
|
188 |
msgid "Official Sitemaps FAQ"
|
189 |
+
msgstr "사이트 맵 FAQ"
|
190 |
|
191 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2905
|
192 |
msgid "My Sitemaps FAQ"
|
259 |
msgid "There was a problem while notifying YAHOO. <a href=\"%s\">View result</a>"
|
260 |
msgstr "YAHOO에 통보하는 동안 문제가 발생했습니다. <a href=\"%s\">결과 보기</a>"
|
261 |
|
262 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2976
|
263 |
+
msgid "MSN was <b>successfully notified</b> about changes."
|
264 |
+
msgstr "MSN에 변경사항을 <b>성공적으로</b> 통보하였습니다."
|
265 |
+
|
266 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2991
|
267 |
+
msgid "It took %time% seconds to notify MSN.com, maybe you want to disable this feature to reduce the building time."
|
268 |
+
msgstr "MSN.com에 통보하는데 %time% 초가 걸렸습니다. 만약 이 기능을 사용하지 않으면 사이트 맵 작성시간을 줄일 수 있습니다."
|
269 |
+
|
270 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3035
|
271 |
+
#, php-format
|
272 |
+
msgid "There was a problem while notifying MSN.com. <a href=\"%s\">View result</a>"
|
273 |
+
msgstr "MSN.com에 통보하는 동안 문제가 발생했습니다. <a href=\"%s\">결과 보기</a>"
|
274 |
+
|
275 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2988
|
276 |
msgid "Ask.com was <b>successfully notified</b> about changes."
|
277 |
msgstr "Ask.com에 변경사항을 <b>성공적으로</b> 통보하였습니다."
|
376 |
msgid "No registration required, but you can join the <a href=\"%s\">Google Webmaster Tools</a> to check crawling statistics."
|
377 |
msgstr "등록이 필요하진 않지만, <a href=\"%s\">구글 웹마스터 툴</a> 에 가입하면 수집 통계를 확인할 수 있습니다."
|
378 |
|
379 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3083
|
380 |
+
msgid "Notify MSN Live Search about updates of your Blog"
|
381 |
+
msgstr "블로그의 업데이트를 MSN Live에 통보"
|
382 |
+
|
383 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3084
|
384 |
+
#, php-format
|
385 |
+
msgid "No registration required, but you can join the <a href=\"%s\">MSN Live Webmaster Tools</a> to check crawling statistics."
|
386 |
+
msgstr "등록이 필요하진 않지만, <a href=\"%s\">MSN Live 웹마스터 툴</a> 에 가입하면 수집 통계를 확인할 수 있습니다."
|
387 |
+
|
388 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3088
|
389 |
msgid "Notify Ask.com about updates of your Blog"
|
390 |
msgstr "블로그의 업데이트를 Ask.com에 통보"
|
397 |
msgid "Notify YAHOO about updates of your Blog"
|
398 |
msgstr "블로그의 업데이트를 YAHOO에 통보"
|
399 |
|
400 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3154
|
401 |
+
msgid "Your Application ID:"
|
402 |
+
msgstr "당신의 Application ID:"
|
403 |
+
|
404 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3155
|
405 |
#, php-format
|
406 |
+
msgid "Don't you have such a key? <a href=\"%s1\">Request one here</a>!</a> %s2"
|
407 |
+
msgstr "Key를 가지고 있지 않나요? <a href=\"%s1\">여기서 신청하세요</a>!</a> %s2"
|
408 |
|
409 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3099
|
410 |
#, php-format
|
479 |
msgid "Build the sitemap in a background process (You don't have to wait when you save a post)"
|
480 |
msgstr "백그라운드 작업으로 사이트 맵을 생성 (포스트를 저장할 때 기다리지 않아도 됩니다.)"
|
481 |
|
482 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3206
|
483 |
+
msgid "Exclude the following posts or pages:"
|
484 |
+
msgstr "다음의 포스트나 페이지를 제외:"
|
485 |
+
|
486 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3206
|
487 |
+
msgid "List of IDs, separated by comma"
|
488 |
+
msgstr "콤마로 구분된 ID 리스트"
|
489 |
+
|
490 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3144
|
491 |
msgid "Additional pages"
|
492 |
msgstr "페이지 추가"
|
638 |
|
639 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3463
|
640 |
msgid "Please note that the value of this tag is considered a hint and not a command. Even though search engine crawlers consider this information when making decisions, they may crawl pages marked \"hourly\" less frequently than that, and they may crawl pages marked \"yearly\" more frequently than that. It is also likely that crawlers will periodically crawl pages marked \"never\" so that they can handle unexpected changes to those pages."
|
641 |
+
msgstr "각 태그에 있는 수치들은 고려할 수 있는 사항일 뿐 절대적인 명령은 아닙니다. 서치 엔진의 Crawler가 아래의 정보를 수집 결정을 내릴 때 고려한다고 해도 \"매시간\" 으로 된 페이지를 더 긴 주기로 수집할 수도 있고 \"매년\" 으로 된 페이지를 더 짧은 주기로 수집할 수도 있습니다. 이것은 \"하지않음\"으로 된 페이지도 마찬가지로 주기적 수집을 할 수도 있어서 그러한 페이지에 발생한 변화를 예기치 않게 수집할 수도 있습니다."
|
642 |
|
643 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3469
|
644 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3535
|
661 |
|
662 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3493
|
663 |
msgid "The current archive of this month (Should be the same like your homepage)"
|
664 |
+
msgstr "이번 달의 아카이브 ( 홈페이지와 같아야 합니다.)"
|
665 |
|
666 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3499
|
667 |
msgid "Older archives (Changes only if you edit an old post)"
|
lang/sitemap-tr_TR.mo
CHANGED
Binary file
|
lang/sitemap-tr_TR.po
CHANGED
@@ -1,597 +1,688 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: sitemap\n"
|
4 |
-
"POT-Creation-Date: \n"
|
5 |
-
"PO-Revision-Date:
|
6 |
-
"Last-Translator: Baris Unver <baris.unver@beyn.org>\n"
|
7 |
-
"Language-Team: Stefano Aglietti <steagl@wordpress-it.it>\n"
|
8 |
-
"MIME-Version: 1.0\n"
|
9 |
-
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
-
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"X-Poedit-Language: Italian\n"
|
12 |
-
"X-Poedit-Country: ITALY\n"
|
13 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
14 |
-
|
15 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:846
|
16 |
-
msgid "Comment Count"
|
17 |
-
msgstr "Yorum Sayımı"
|
18 |
-
|
19 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:858
|
20 |
-
msgid "Uses the number of comments of the post to calculate the priority"
|
21 |
-
msgstr "Önceliği belirlemek için yazıya yapılmış yorum sayısını kullan"
|
22 |
-
|
23 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:918
|
24 |
-
msgid "Comment Average"
|
25 |
-
msgstr "Yorum Ortalaması"
|
26 |
-
|
27 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:930
|
28 |
-
msgid "Uses the average comment count to calculate the priority"
|
29 |
-
msgstr "Önceliği hesaplamak için yazıların ortalama yorum sayısını kullanır"
|
30 |
-
|
31 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:993
|
32 |
-
msgid "Popularity Contest"
|
33 |
-
msgstr "Popularity Contest"
|
34 |
-
|
35 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:1005
|
36 |
-
msgid "Uses the activated <a href=\"%1\">Popularity Contest Plugin</a> from <a href=\"%2\">Alex King</a>. See <a href=\"%3\">Settings</a> and <a href=\"%4\">Most Popular Posts</a>"
|
37 |
-
msgstr "<a href=\"%2\">Alex King</a> tarafından yaratılmış <a href=\"%1\">Popularity Contest Eklentisi</a> ile uyumlu olarak çalışır, öncelikleri Popularity Contest'in raporlarına göre hesaplar. Ayarlar için <a href=\"%3\">buraya</a>, en popüler yazılar içinse <a href=\"%4\">buraya</a> tıklayın."
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
msgid "
|
57 |
-
msgstr ""
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
msgid "
|
69 |
-
msgstr "
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
msgid "
|
78 |
-
msgstr "
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
msgid "
|
105 |
-
msgstr "
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
119 |
-
msgid "
|
120 |
-
msgstr "
|
121 |
-
|
122 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
134 |
-
msgid "
|
135 |
-
msgstr "
|
136 |
-
|
137 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
msgid "
|
154 |
-
msgstr "
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
msgid "
|
173 |
-
msgstr "
|
174 |
-
|
175 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
176 |
-
msgid "
|
177 |
-
msgstr "
|
178 |
-
|
179 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
180 |
-
msgid "My
|
181 |
-
msgstr "
|
182 |
-
|
183 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
184 |
-
msgid "
|
185 |
-
msgstr "
|
186 |
-
|
187 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
188 |
-
msgid "
|
189 |
-
msgstr "
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
msgid "
|
235 |
-
msgstr "
|
236 |
-
|
237 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
238 |
-
msgid "
|
239 |
-
msgstr "
|
240 |
-
|
241 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
242 |
-
msgid "
|
243 |
-
msgstr "
|
244 |
-
|
245 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
246 |
-
#, php-format
|
247 |
-
msgid "
|
248 |
-
msgstr "
|
249 |
-
|
250 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
251 |
-
msgid "
|
252 |
-
msgstr "
|
253 |
-
|
254 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
255 |
-
msgid "
|
256 |
-
msgstr "
|
257 |
-
|
258 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
msgid "
|
277 |
-
msgstr "
|
278 |
-
|
279 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
280 |
-
msgid "
|
281 |
-
msgstr "
|
282 |
-
|
283 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
284 |
-
msgid "
|
285 |
-
msgstr "
|
286 |
-
|
287 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
msgid "
|
294 |
-
msgstr "
|
295 |
-
|
296 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
msgid "
|
320 |
-
msgstr "
|
321 |
-
|
322 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
323 |
-
msgid "
|
324 |
-
msgstr "
|
325 |
-
|
326 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
327 |
-
msgid "
|
328 |
-
msgstr "
|
329 |
-
|
330 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
331 |
-
msgid "
|
332 |
-
msgstr "
|
333 |
-
|
334 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
335 |
-
msgid "
|
336 |
-
msgstr ""
|
337 |
-
|
338 |
-
|
339 |
-
"
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
371 |
-
|
372 |
-
msgid "
|
373 |
-
msgstr "
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
msgid "
|
440 |
-
msgstr "
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
msgid "
|
449 |
-
msgstr "
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
msgid "
|
461 |
-
msgstr "
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
msgid "
|
476 |
-
msgstr "
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
msgid "
|
500 |
-
msgstr "
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
msgid "
|
512 |
-
msgstr "
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
msgid "
|
569 |
-
msgstr "
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: sitemap\n"
|
4 |
+
"POT-Creation-Date: \n"
|
5 |
+
"PO-Revision-Date: 2008-05-24 23:44+0200\n"
|
6 |
+
"Last-Translator: Baris Unver <baris.unver@beyn.org>\n"
|
7 |
+
"Language-Team: Stefano Aglietti <steagl@wordpress-it.it>\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"X-Poedit-Language: Italian\n"
|
12 |
+
"X-Poedit-Country: ITALY\n"
|
13 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
14 |
+
|
15 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:846
|
16 |
+
msgid "Comment Count"
|
17 |
+
msgstr "Yorum Sayımı"
|
18 |
+
|
19 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:858
|
20 |
+
msgid "Uses the number of comments of the post to calculate the priority"
|
21 |
+
msgstr "Önceliği belirlemek için yazıya yapılmış yorum sayısını kullan"
|
22 |
+
|
23 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:918
|
24 |
+
msgid "Comment Average"
|
25 |
+
msgstr "Yorum Ortalaması"
|
26 |
+
|
27 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:930
|
28 |
+
msgid "Uses the average comment count to calculate the priority"
|
29 |
+
msgstr "Önceliği hesaplamak için yazıların ortalama yorum sayısını kullanır"
|
30 |
+
|
31 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:993
|
32 |
+
msgid "Popularity Contest"
|
33 |
+
msgstr "Popularity Contest"
|
34 |
+
|
35 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:1005
|
36 |
+
msgid "Uses the activated <a href=\"%1\">Popularity Contest Plugin</a> from <a href=\"%2\">Alex King</a>. See <a href=\"%3\">Settings</a> and <a href=\"%4\">Most Popular Posts</a>"
|
37 |
+
msgstr "<a href=\"%2\">Alex King</a> tarafından yaratılmış <a href=\"%1\">Popularity Contest Eklentisi</a> ile uyumlu olarak çalışır, öncelikleri Popularity Contest'in raporlarına göre hesaplar. Ayarlar için <a href=\"%3\">buraya</a>, en popüler yazılar içinse <a href=\"%4\">buraya</a> tıklayın."
|
38 |
+
|
39 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-core.php:1118
|
40 |
+
msgid "Always"
|
41 |
+
msgstr "Her zaman"
|
42 |
+
|
43 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-core.php:1119
|
44 |
+
msgid "Hourly"
|
45 |
+
msgstr "Saatte bir"
|
46 |
+
|
47 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-core.php:1120
|
48 |
+
msgid "Daily"
|
49 |
+
msgstr "Günde bir"
|
50 |
+
|
51 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-core.php:1121
|
52 |
+
msgid "Weekly"
|
53 |
+
msgstr "Haftada bir"
|
54 |
+
|
55 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-core.php:1122
|
56 |
+
msgid "Monthly"
|
57 |
+
msgstr "Ayda bir"
|
58 |
+
|
59 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-core.php:1123
|
60 |
+
msgid "Yearly"
|
61 |
+
msgstr "Yılda bir"
|
62 |
+
|
63 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-core.php:1124
|
64 |
+
msgid "Never"
|
65 |
+
msgstr "Hiçbir zaman"
|
66 |
+
|
67 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2600
|
68 |
+
msgid "Thank you very much for your donation. You help me to continue support and development of this plugin and other free software!"
|
69 |
+
msgstr "Bağışınız için çok teşekkürler. Bu eklenti üzerinde çalışmam ve destek sunabilmem için yardım sağlamış oldunuz!"
|
70 |
+
|
71 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2600
|
72 |
+
msgid "Hide this notice"
|
73 |
+
msgstr "Bu bildiriyi sakla"
|
74 |
+
|
75 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2606
|
76 |
+
#, php-format
|
77 |
+
msgid "Thanks for using this plugin! You've installed this plugin over a month ago. If it works and your are satisfied with the results, isn't it worth at least one dollar? <a href=\"%s\">Donations</a> help me to continue support and development of this <i>free</i> software! <a href=\"%s\">Sure, no problem!</a>"
|
78 |
+
msgstr ""
|
79 |
+
"Bu eklentiyi kullandığınız için teşekkürler! Bu eklentiyi bir aydan daha uzun süredir kullanıyorsunuz. Eğer eklenti sizin işinize yaradıysa ve sevdiyseniz, sizce bu en azından bir dolar etmez mi? <a href=\"%s\">Yapılan bağışlar</a>, bu <i>ücretsiz</i> eklentiyi geliştirmeye devam etmemi ve eklenti hakkında destek sunmamı sağlıyor!\n"
|
80 |
+
"<a href=\"%s\">Tabii canım, ne demek!</a>"
|
81 |
+
|
82 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2606
|
83 |
+
msgid "No thanks, please don't bug me anymore!"
|
84 |
+
msgstr "Yok teşekkürler, lütfen beni bir daha rahatsız etme!"
|
85 |
+
|
86 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:67
|
87 |
+
msgid "Your sitemap is beeing refreshed at the moment. Depending on your blog size this might take some time!"
|
88 |
+
msgstr "Site haritanız şu anda yenileniyor. Blog'unuzun büyüklüğüne göre bu işlem biraz zaman alabilir!"
|
89 |
+
|
90 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:69
|
91 |
+
#, php-format
|
92 |
+
msgid "Your sitemap will be refreshed in %s seconds. Depending on your blog size this might take some time!"
|
93 |
+
msgstr "Site haritanız %s saniye içinde yenilenecek. Blog'unuzun büyüklüğüne göre bu işlem biraz zaman alabilir!"
|
94 |
+
|
95 |
+
msgid "XML Sitemap Generator for WordPress"
|
96 |
+
msgstr "Wordpress için XML Site Haritası Oluşturucusu"
|
97 |
+
|
98 |
+
msgid "Configuration updated"
|
99 |
+
msgstr "Ayarlar kaydedildi"
|
100 |
+
|
101 |
+
msgid "Error while saving options"
|
102 |
+
msgstr "Seçenekler kaydedilirken hata oluştu"
|
103 |
+
|
104 |
+
msgid "Pages saved"
|
105 |
+
msgstr "Sayfalar kaydedildi"
|
106 |
+
|
107 |
+
msgid "Error while saving pages"
|
108 |
+
msgstr "Sayfalar kaydedilirken hata oluştu"
|
109 |
+
|
110 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2748
|
111 |
+
#, php-format
|
112 |
+
msgid "<a href=\"%s\">Robots.txt</a> file saved"
|
113 |
+
msgstr "<a href=\"%s\">Robots.txt</a> dosyası kaydedildi."
|
114 |
+
|
115 |
+
msgid "Error while saving Robots.txt file"
|
116 |
+
msgstr "Robots.txt dosyası kaydedilirken hata oluştu"
|
117 |
+
|
118 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2758
|
119 |
+
msgid "The default configuration was restored."
|
120 |
+
msgstr "Varsayılan seçenekler yüklendi"
|
121 |
+
|
122 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2851
|
123 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2868
|
124 |
+
msgid "open"
|
125 |
+
msgstr "açmak"
|
126 |
+
|
127 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2852
|
128 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2869
|
129 |
+
msgid "close"
|
130 |
+
msgstr "kapamak"
|
131 |
+
|
132 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2853
|
133 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2870
|
134 |
+
msgid "click-down and drag to move this box"
|
135 |
+
msgstr "kutuyu taşımak için tıklayıp sürükleyin"
|
136 |
+
|
137 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2854
|
138 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2871
|
139 |
+
msgid "click to %toggle% this box"
|
140 |
+
msgstr "kutuyu %toggle% için tıklayın"
|
141 |
+
|
142 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2855
|
143 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2872
|
144 |
+
msgid "use the arrow keys to move this box"
|
145 |
+
msgstr "bu kutuyu taşımak için yön tuşlarını kullanın"
|
146 |
+
|
147 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2856
|
148 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2873
|
149 |
+
msgid ", or press the enter key to %toggle% it"
|
150 |
+
msgstr "%toggle% için , veya enter tuşuna basın"
|
151 |
+
|
152 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2884
|
153 |
+
msgid "About this Plugin:"
|
154 |
+
msgstr "Bu Eklenti Hakkında:"
|
155 |
+
|
156 |
+
msgid "Plugin Homepage"
|
157 |
+
msgstr "Eklenti Anasayfası"
|
158 |
+
|
159 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:421
|
160 |
+
msgid "Suggest a Feature"
|
161 |
+
msgstr "Bir Özellik Öner"
|
162 |
+
|
163 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2887
|
164 |
+
msgid "Notify List"
|
165 |
+
msgstr "Bildiri listesi"
|
166 |
+
|
167 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2888
|
168 |
+
msgid "Support Forum"
|
169 |
+
msgstr "Destek Forumu"
|
170 |
+
|
171 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:424
|
172 |
+
msgid "Report a Bug"
|
173 |
+
msgstr "Bir Hata Raporla"
|
174 |
+
|
175 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2889
|
176 |
+
msgid "Donate with PayPal"
|
177 |
+
msgstr "PayPal ile Bağış Yap"
|
178 |
+
|
179 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2890
|
180 |
+
msgid "My Amazon Wish List"
|
181 |
+
msgstr "Amazın Wish List'im"
|
182 |
+
|
183 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2891
|
184 |
+
msgid "translator_name"
|
185 |
+
msgstr "Barış Ünver"
|
186 |
+
|
187 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2891
|
188 |
+
msgid "translator_url"
|
189 |
+
msgstr "http://beyn.org"
|
190 |
+
|
191 |
+
msgid "Sitemap Resources:"
|
192 |
+
msgstr "Site Haritası Kaynakları:"
|
193 |
+
|
194 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2897
|
195 |
+
msgid "Webmaster Tools"
|
196 |
+
msgstr "Webmaster Araçları"
|
197 |
+
|
198 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2898
|
199 |
+
msgid "Webmaster Blog"
|
200 |
+
msgstr "Webmaster Blog'u"
|
201 |
+
|
202 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2900
|
203 |
+
msgid "Site Explorer"
|
204 |
+
msgstr "Site Explorer"
|
205 |
+
|
206 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2901
|
207 |
+
msgid "Search Blog"
|
208 |
+
msgstr "Search Blog"
|
209 |
+
|
210 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2898
|
211 |
+
msgid "Webmaster Center Blog"
|
212 |
+
msgstr "Webmaster Merkezi Blog'u"
|
213 |
+
|
214 |
+
msgid "Sitemaps Protocol"
|
215 |
+
msgstr "Site Haritası Protokolü"
|
216 |
+
|
217 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2904
|
218 |
+
msgid "Official Sitemaps FAQ"
|
219 |
+
msgstr "Resmi Sitemap SSS'si"
|
220 |
+
|
221 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2905
|
222 |
+
msgid "My Sitemaps FAQ"
|
223 |
+
msgstr "Bu Eklentinin SSS'si"
|
224 |
+
|
225 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2910
|
226 |
+
msgid "Recent Donations:"
|
227 |
+
msgstr "Son Bağışlar:"
|
228 |
+
|
229 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2914
|
230 |
+
msgid "List of the donors"
|
231 |
+
msgstr "Bağış Yapanların Listesi:"
|
232 |
+
|
233 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2916
|
234 |
+
msgid "Hide this list"
|
235 |
+
msgstr "Bu listeyi sakla"
|
236 |
+
|
237 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2919
|
238 |
+
msgid "Thanks for your support!"
|
239 |
+
msgstr "Desteğiniz için teşekkürler!"
|
240 |
+
|
241 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2931
|
242 |
+
msgid "Status"
|
243 |
+
msgstr "Durum"
|
244 |
+
|
245 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2941
|
246 |
+
#, php-format
|
247 |
+
msgid "The sitemap wasn't built yet. <a href=\"%s\">Click here</a> to build it the first time."
|
248 |
+
msgstr "Site haritanız henüz oluşturulmamış. Oluşturmak için <a href=\"%s\">buraya tıklayın</a>."
|
249 |
+
|
250 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2947
|
251 |
+
msgid "Your <a href=\"%url%\">sitemap</a> was last built on <b>%date%</b>."
|
252 |
+
msgstr "<a href=\"%url%\">Site haritanız</a> en son <b>%date%</b> tarihinde oluşturulmuş."
|
253 |
+
|
254 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2949
|
255 |
+
msgid "There was a problem writing your sitemap file. Make sure the file exists and is writable. <a href=\"%url%\">Learn more</a"
|
256 |
+
msgstr "Site haritanız oluşturulurken bir hata oluştu. Lütfen dosyanın var olduğundan ve yazma izinlerinin olduğundan emin olun. <a href=\"%url%\">Daha fazla</a>"
|
257 |
+
|
258 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2956
|
259 |
+
msgid "Your sitemap (<a href=\"%url%\">zipped</a>) was last built on <b>%date%</b>."
|
260 |
+
msgstr "Sıkıştırılmış site haritanız"
|
261 |
+
|
262 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2958
|
263 |
+
msgid "There was a problem writing your zipped sitemap file. Make sure the file exists and is writable. <a href=\"%url%\">Learn more</a"
|
264 |
+
msgstr "Sıkıştırılmış site haritanız oluşturulurken bir hata oluştu. Lütfen dosyanın var olduğundan ve yazma izinlerinin olduğundan emin olun. <a href=\"%url%\">Daha fazla</a>"
|
265 |
+
|
266 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2964
|
267 |
+
msgid "Google was <b>successfully notified</b> about changes."
|
268 |
+
msgstr "Google <b>başarıyla bilgilendirildi.</b>"
|
269 |
+
|
270 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2967
|
271 |
+
msgid "It took %time% seconds to notify Google, maybe you want to disable this feature to reduce the building time."
|
272 |
+
msgstr "Google'ın bilgilendirilmesi %time% saniye sürdü, kurulum süresini düşürmek için bu seçeneği kaldırabilirsiniz"
|
273 |
+
|
274 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2970
|
275 |
+
#, php-format
|
276 |
+
msgid "There was a problem while notifying Google. <a href=\"%s\">View result</a>"
|
277 |
+
msgstr "Google bilgilendirilirken hata oluştu. <a href=\"%s\">Hatayı göster</a>"
|
278 |
+
|
279 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2976
|
280 |
+
msgid "YAHOO was <b>successfully notified</b> about changes."
|
281 |
+
msgstr "Yahoo! <b>başarıyla bilgilendirildi.</b>"
|
282 |
+
|
283 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2979
|
284 |
+
msgid "It took %time% seconds to notify YAHOO, maybe you want to disable this feature to reduce the building time."
|
285 |
+
msgstr "Yahoo!'nun bilgilendirilmesi %time% saniye sürdü, kurulum süresini düşürmek için bu seçeneği kaldırabilirsiniz"
|
286 |
+
|
287 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2982
|
288 |
+
#, php-format
|
289 |
+
msgid "There was a problem while notifying YAHOO. <a href=\"%s\">View result</a>"
|
290 |
+
msgstr "Yahoo! bilgilendirilirken hata oluştu. <a href=\"%s\">Hatayı göster</a>"
|
291 |
+
|
292 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2976
|
293 |
+
msgid "MSN was <b>successfully notified</b> about changes."
|
294 |
+
msgstr "MSN <b>başarıyla bilgilendirildi.</b>"
|
295 |
+
|
296 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2991
|
297 |
+
msgid "It took %time% seconds to notify MSN.com, maybe you want to disable this feature to reduce the building time."
|
298 |
+
msgstr "MSN.com'un bilgilendirilmesi %time% saniye sürdü, kurulum süresini düşürmek için bu seçeneği kaldırabilirsiniz"
|
299 |
+
|
300 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2994
|
301 |
+
#, php-format
|
302 |
+
msgid "There was a problem while notifying MSN.com. <a href=\"%s\">View result</a>"
|
303 |
+
msgstr "MSN.com bilgilendirilirken hata oluştu. <a href=\"%s\">Hatayı göster</a>"
|
304 |
+
|
305 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2988
|
306 |
+
msgid "Ask.com was <b>successfully notified</b> about changes."
|
307 |
+
msgstr "Ask.com <b>başarıyla bilgilendirildi.</b>"
|
308 |
+
|
309 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2991
|
310 |
+
msgid "It took %time% seconds to notify Ask.com, maybe you want to disable this feature to reduce the building time."
|
311 |
+
msgstr "Ask.com'un bilgilendirilmesi %time% saniye sürdü, kurulum süresini düşürmek için bu seçeneği kaldırabilirsiniz"
|
312 |
+
|
313 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2994
|
314 |
+
#, php-format
|
315 |
+
msgid "There was a problem while notifying Ask.com. <a href=\"%s\">View result</a>"
|
316 |
+
msgstr "Ask.com bilgilendirilirken hata oluştu. <a href=\"%s\">Hatayı göster</a>"
|
317 |
+
|
318 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3002
|
319 |
+
msgid "The building process took about <b>%time% seconds</b> to complete and used %memory% MB of memory."
|
320 |
+
msgstr "Kurulum toplam <b>%time% saniye</b> sürdü ve %memory% MB bellek kullandı."
|
321 |
+
|
322 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3004
|
323 |
+
msgid "The building process took about <b>%time% seconds</b> to complete."
|
324 |
+
msgstr "Kurulum toplam <b>%time% saniye</b> sürdü."
|
325 |
+
|
326 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3008
|
327 |
+
msgid "The content of your sitemap <strong>didn't change</strong> since the last time so the files were not written and no search engine was pinged."
|
328 |
+
msgstr "Site haritanızın içeriği önceki <b>güncellemeyle aynı olduğundan</b> dolayı herhangi bir güncelleme yapılmadı ve herhangi bir arama motoru ping'lenmedi."
|
329 |
+
|
330 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:586
|
331 |
+
msgid "The building process might still be active! Reload the page in a few seconds and check if something has changed."
|
332 |
+
msgstr "Kurulum işlemi hala aktif olabilir! Bu sayfayı birkaç saniye sonra yenileyip bir şeyin değişip değişmediğini kontrol edin."
|
333 |
+
|
334 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3012
|
335 |
+
msgid "The last run didn't finish! Maybe you can raise the memory or time limit for PHP scripts. <a href=\"%url%\">Learn more</a>"
|
336 |
+
msgstr "Son güncelleme daha bitmedi! Kullanılan bellek miktarını yükseltebilir veya kurulum süresini uzatabilirsiniz. <a href=\"%url%\">Daha fazla</a>"
|
337 |
+
|
338 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3014
|
339 |
+
msgid "The last known memory usage of the script was %memused%MB, the limit of your server is %memlimit%."
|
340 |
+
msgstr "Betiğin son bilinen bellek kullanımı %memused%MB oldu, sunucunuzun sağladığı bellek sınırı ise %memlimit%."
|
341 |
+
|
342 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3018
|
343 |
+
msgid "The last known execution time of the script was %timeused% seconds, the limit of your server is %timelimit% seconds."
|
344 |
+
msgstr "Betiğin son çalıştırılması %timeused% saniye sürdü, sunucunuzun sağladığı süre sınırı ise %timelimit% saniye."
|
345 |
+
|
346 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3022
|
347 |
+
msgid "The script stopped around post number %lastpost% (+/- 100)"
|
348 |
+
msgstr "Betik, %lastpost% numaralı yazı civarında (+/- 100) durdu."
|
349 |
+
|
350 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3025
|
351 |
+
#, php-format
|
352 |
+
msgid "If you changed something on your server or blog, you should <a href=\"%s\">rebuild the sitemap</a> manually."
|
353 |
+
msgstr "Eğer sunucunuzda veya blog'unuzda bir değişiklik yaptıysanız, site haritanızı <a href=\"%s\">güncellemek</a> isteyebilirsiniz."
|
354 |
+
|
355 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3027
|
356 |
+
#, php-format
|
357 |
+
msgid "If you encounter any problems with the build process you can use the <a href=\"%d\">debug function</a> to get more information."
|
358 |
+
msgstr "Eğer bir sorunla (veya sorunlarla) karşılaşırsanız, <a href=\"%d\">hata ayıklama kipi</a>ni kullanıp sorun(lar) hakkında bilgi sahibi olabilirsiniz."
|
359 |
+
|
360 |
+
msgid "Basic Options"
|
361 |
+
msgstr "Temel Ayarlar"
|
362 |
+
|
363 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3044
|
364 |
+
msgid "Sitemap files:"
|
365 |
+
msgstr "Site haritası dosyaları:"
|
366 |
+
|
367 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3044
|
368 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3059
|
369 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3079
|
370 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3104
|
371 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3121
|
372 |
+
msgid "Learn more"
|
373 |
+
msgstr "Daha fazla"
|
374 |
+
|
375 |
+
msgid "Write a normal XML file (your filename)"
|
376 |
+
msgstr "Normal bir XML dosyası oluştur (dosya isminiz.xml)"
|
377 |
+
|
378 |
+
msgid "Write a gzipped file (your filename + .gz)"
|
379 |
+
msgstr "Gzip ile sıkıştırılmış bir dosya oluştur (dosya isminiz.xml.gz)"
|
380 |
+
|
381 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3059
|
382 |
+
msgid "Building mode:"
|
383 |
+
msgstr "Kurma kipi"
|
384 |
+
|
385 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3064
|
386 |
+
msgid "Rebuild sitemap if you change the content of your blog"
|
387 |
+
msgstr "Blog'un içeriği değiştiğinde site haritasını güncelle"
|
388 |
+
|
389 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3071
|
390 |
+
msgid "Enable manual sitemap building via GET Request"
|
391 |
+
msgstr "GET talebiyle site haritasının elle kurulumunu etkinleştir"
|
392 |
+
|
393 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3075
|
394 |
+
msgid "This will allow you to refresh your sitemap if an external tool wrote into the WordPress database without using the WordPress API. Use the following URL to start the process: <a href=\"%1\">%1</a> Please check the logfile above to see if sitemap was successfully built."
|
395 |
+
msgstr ""
|
396 |
+
"Eğer blog'unuzu güncellemek için Wordpress API'sini kullanmayan üçüncü parti bir yazılım kullanıyorsanız bu araç işinize yarayacaktır. Başlatmak için aşağıdaki bağlantıyı kullanın:\n"
|
397 |
+
"<a href=\"%1\">%1</a>\n"
|
398 |
+
"Lütfen site haritasının başarıyla kurulup kurulmadığını kontrol etmek için raporlara bakınız."
|
399 |
+
|
400 |
+
msgid "Update notification:"
|
401 |
+
msgstr "Güncelleme bildirisi:"
|
402 |
+
|
403 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3083
|
404 |
+
msgid "Notify Google about updates of your Blog"
|
405 |
+
msgstr "Blog'unuzun güncellenimini Google'a bildir"
|
406 |
+
|
407 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3084
|
408 |
+
#, php-format
|
409 |
+
msgid "No registration required, but you can join the <a href=\"%s\">Google Webmaster Tools</a> to check crawling statistics."
|
410 |
+
msgstr "Kayıt gerektirmez, ama <a href=\"%s\">Google Webmaster Tools</a>'a katılarak crawl istatistiklerini görebilirsiniz."
|
411 |
+
|
412 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3083
|
413 |
+
msgid "Notify MSN Live Search about updates of your Blog"
|
414 |
+
msgstr "Blog'unuzun güncellenimini MSN Live Search'e bildir"
|
415 |
+
|
416 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3084
|
417 |
+
#, php-format
|
418 |
+
msgid "No registration required, but you can join the <a href=\"%s\">MSN Live Webmaster Tools</a> to check crawling statistics."
|
419 |
+
msgstr "Kayıt gerektirmez, ama <a href=\"%s\">MSN Live Webmaster Tools</a>'a katılarak crawl istatistiklerini görebilirsiniz."
|
420 |
+
|
421 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3088
|
422 |
+
msgid "Notify Ask.com about updates of your Blog"
|
423 |
+
msgstr "Blog'unuzun güncellenimini Ask.com'a bildir"
|
424 |
+
|
425 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3089
|
426 |
+
msgid "No registration required."
|
427 |
+
msgstr "Kayıt gerektirmez."
|
428 |
+
|
429 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3093
|
430 |
+
msgid "Notify YAHOO about updates of your Blog"
|
431 |
+
msgstr "Blog'unuzun güncellenimini Yahoo!'ya bildir"
|
432 |
+
|
433 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3154
|
434 |
+
msgid "Your Application ID:"
|
435 |
+
msgstr "Uygulama ID'niz:"
|
436 |
+
|
437 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3155
|
438 |
+
#, php-format
|
439 |
+
msgid "Don't you have such a key? <a href=\"%s1\">Request one here</a>!</a> %s2"
|
440 |
+
msgstr "Böyle bir anahtarınız yok mu? <a href=\"%s1\">Buradan bir tane isteyin</a>!</a> %s2"
|
441 |
+
|
442 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3099
|
443 |
+
#, php-format
|
444 |
+
msgid "Modify or create %s file in blog root which contains the sitemap location."
|
445 |
+
msgstr "Site haritası konumunu içeren (veya içermesi gereken) %s dosyasını güncelle (veya yarat)."
|
446 |
+
|
447 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3102
|
448 |
+
msgid "File permissions: "
|
449 |
+
msgstr "Dosya izinleri:"
|
450 |
+
|
451 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3107
|
452 |
+
msgid "OK, robots.txt is writable."
|
453 |
+
msgstr "Tamam, robots.txt için yazma izinleri var."
|
454 |
+
|
455 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3109
|
456 |
+
msgid "Error, robots.txt is not writable."
|
457 |
+
msgstr "Hata, robots.txt dosyasının yazma izinleri yok."
|
458 |
+
|
459 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3113
|
460 |
+
msgid "OK, robots.txt doesn't exist but the directory is writable."
|
461 |
+
msgstr "Tamam, robots.txt dosyası yok ama dizinin yazma izinleri var (yani robots.txt oluşturulabilir)"
|
462 |
+
|
463 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3115
|
464 |
+
msgid "Error, robots.txt doesn't exist and the directory is not writable"
|
465 |
+
msgstr "Hata, robots.txt bulunamadı ve dizinin yazma izinleri yok (yani robots.txt oluşturulamıyor)"
|
466 |
+
|
467 |
+
msgid "Advanced options:"
|
468 |
+
msgstr "Gelişmiş seçenekler:"
|
469 |
+
|
470 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3124
|
471 |
+
msgid "Limit the number of posts in the sitemap:"
|
472 |
+
msgstr "Site haritasındaki yazı sayısını sınırlandır:"
|
473 |
+
|
474 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3124
|
475 |
+
msgid "Newer posts will be included first"
|
476 |
+
msgstr "Yeni yazılar site haritasında ilk sıraya yerleştirilsin"
|
477 |
+
|
478 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3127
|
479 |
+
msgid "Try to increase the memory limit to:"
|
480 |
+
msgstr "Kullanılacak bellek sınırını şuna yükseltmeyi dene:"
|
481 |
+
|
482 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3127
|
483 |
+
msgid "e.g. \"4M\", \"16M\""
|
484 |
+
msgstr "(örn. \"4M\", \"16M\")"
|
485 |
+
|
486 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3130
|
487 |
+
msgid "Try to increase the execution time limit to:"
|
488 |
+
msgstr "İşlemi gerçekleştirmek için gereken zaman sınırını şuna yükseltmeyi dene:"
|
489 |
+
|
490 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3130
|
491 |
+
msgid "in seconds, e.g. \"60\" or \"0\" for unlimited"
|
492 |
+
msgstr "saniye olarak belirtin (örn. \"60\") (sınırsız için \"0\" kullanın)"
|
493 |
+
|
494 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3133
|
495 |
+
msgid "Include a XSLT stylesheet:"
|
496 |
+
msgstr "Bir XSLT Sayfa Yönergesi (Stylesheet) Kullan:"
|
497 |
+
|
498 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3133
|
499 |
+
msgid "Use Default"
|
500 |
+
msgstr "Varsayılanı Kullan"
|
501 |
+
|
502 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3133
|
503 |
+
msgid "Full or relative URL to your .xsl file"
|
504 |
+
msgstr ".xsl dosyanızın tam veya bağıl yolu"
|
505 |
+
|
506 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3152
|
507 |
+
msgid "Enable MySQL standard mode. Use this only if you're getting MySQL errors. (Needs much more memory!)"
|
508 |
+
msgstr "MySQL standart kipini etkinleştirin. Yalnızca MySQL hataları alıyorsanız bunu kullanın, çok fazla belleğe ihtiyaç duyar!"
|
509 |
+
|
510 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3166
|
511 |
+
msgid "Build the sitemap in a background process (You don't have to wait when you save a post)"
|
512 |
+
msgstr "Site haritasını bir arkaplan işleminde oluştur (Bir yazıyı kaydederken beklemek zorunda kalmazsınız)"
|
513 |
+
|
514 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3206
|
515 |
+
msgid "Exclude the following posts or pages:"
|
516 |
+
msgstr "Şu yazı veya sayfaları hariç tut:"
|
517 |
+
|
518 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3206
|
519 |
+
msgid "List of IDs, separated by comma"
|
520 |
+
msgstr "ID listesi, virgülle ayırın:"
|
521 |
+
|
522 |
+
msgid "Additional pages"
|
523 |
+
msgstr "Ek sayfalar"
|
524 |
+
|
525 |
+
msgid "Here you can specify files or URLs which should be included in the sitemap, but do not belong to your Blog/WordPress.<br />For example, if your domain is www.foo.com and your blog is located on www.foo.com/blog you might want to include your homepage at www.foo.com"
|
526 |
+
msgstr "Burada blog'unuza ait olmayan sayfaları site haritasında yer alacak şekilde ekleyebilirsiniz.<br />Örneğin, eğer sayfanız www.foo.com ise ve blog'unuz www.foo.com/blog ise, anasayfanız olan www.foo.com adresini de eklemek isteyebilirsiniz."
|
527 |
+
|
528 |
+
msgid "Note"
|
529 |
+
msgstr "Not"
|
530 |
+
|
531 |
+
msgid "If your blog is in a subdirectory and you want to add pages which are NOT in the blog directory or beneath, you MUST place your sitemap file in the root directory (Look at the "Location of your sitemap file" section on this page)!"
|
532 |
+
msgstr "Eğer blog'unuz bir alt klasördeyse ve blog'da OLMAYAN sayfalar eklemek istiyorsanız, site haritası dosyanızı KESİNLİKLE kök klasöre koymanız gereklidir (Bu sayfadaki "Site haritanızın konumu" bölümüne bakın)!"
|
533 |
+
|
534 |
+
msgid "URL to the page"
|
535 |
+
msgstr "Sayfanın URL'i"
|
536 |
+
|
537 |
+
msgid "Enter the URL to the page. Examples: http://www.foo.com/index.html or www.foo.com/home "
|
538 |
+
msgstr "Sayfanın URL'ini ekleyin. Örnekler: http://www.foo.com/index.html veya www.foo.com/home "
|
539 |
+
|
540 |
+
msgid "Priority"
|
541 |
+
msgstr "Öncelik"
|
542 |
+
|
543 |
+
msgid "Choose the priority of the page relative to the other pages. For example, your homepage might have a higher priority than your imprint."
|
544 |
+
msgstr "Sayfanın, diğer sayfalara göre alacağı önceliği belirleyin. Örneğin, anasayfanızın daha yüksek bir öncelik alması gerekebilir."
|
545 |
+
|
546 |
+
msgid "Last Changed"
|
547 |
+
msgstr "Son Düzenlenen"
|
548 |
+
|
549 |
+
msgid "Enter the date of the last change as YYYY-MM-DD (2005-12-31 for example) (optional)."
|
550 |
+
msgstr "Son değişikliğin tarihini YYYY-AA-GG olarak yazın (örneğin 2005-12-31) (isteğe bağlı)"
|
551 |
+
|
552 |
+
msgid "Change Frequency"
|
553 |
+
msgstr "Sıklık Değiştir"
|
554 |
+
|
555 |
+
msgid "#"
|
556 |
+
msgstr "#"
|
557 |
+
|
558 |
+
msgid "No pages defined."
|
559 |
+
msgstr "Hiç sayfa tanımlanmamış."
|
560 |
+
|
561 |
+
msgid "Add new page"
|
562 |
+
msgstr "Yeni sayfa ekle"
|
563 |
+
|
564 |
+
msgid "Post Priority"
|
565 |
+
msgstr "Yazı önceliği"
|
566 |
+
|
567 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3329
|
568 |
+
msgid "Please select how the priority of each post should be calculated:"
|
569 |
+
msgstr "Lütfen yazıların önceliklerinin nasıl hesaplanmasını istediğinizi seçin:"
|
570 |
+
|
571 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3331
|
572 |
+
msgid "Do not use automatic priority calculation"
|
573 |
+
msgstr "Otomatik öncelik hesaplamasını kullanma"
|
574 |
+
|
575 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3331
|
576 |
+
msgid "All posts will have the same priority which is defined in "Priorities""
|
577 |
+
msgstr ""Öncelikler"de tanımlanmış tüm yazılar aynı önceliğe sahip olur."
|
578 |
+
|
579 |
+
msgid "Location of your sitemap file"
|
580 |
+
msgstr "Site haritanızın konumu"
|
581 |
+
|
582 |
+
msgid "Automatic detection"
|
583 |
+
msgstr "Otomatik tespit"
|
584 |
+
|
585 |
+
msgid "Filename of the sitemap file"
|
586 |
+
msgstr "Site haritası dosyasının ismi"
|
587 |
+
|
588 |
+
msgid "Detected Path"
|
589 |
+
msgstr "Bulunan Yol"
|
590 |
+
|
591 |
+
msgid "Detected URL"
|
592 |
+
msgstr "Bulunan URL"
|
593 |
+
|
594 |
+
msgid "Custom location"
|
595 |
+
msgstr "Özel konum"
|
596 |
+
|
597 |
+
msgid "Absolute or relative path to the sitemap file, including name."
|
598 |
+
msgstr "Site haritasının tam veya bağıl yolu (ismi dahil)."
|
599 |
+
|
600 |
+
msgid "Example"
|
601 |
+
msgstr "Örnek"
|
602 |
+
|
603 |
+
msgid "Complete URL to the sitemap file, including name."
|
604 |
+
msgstr "Site haritasının tam URL'i (ismi dahil)."
|
605 |
+
|
606 |
+
msgid "Sitemap Content"
|
607 |
+
msgstr "Site Haritas İçeriği"
|
608 |
+
|
609 |
+
msgid "Include homepage"
|
610 |
+
msgstr "Anasayfayı dahil et"
|
611 |
+
|
612 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:1013
|
613 |
+
msgid "Include all pages of multi-page posts (<!--nextpage-->)"
|
614 |
+
msgstr "Çoklu sayfalı tüm yazıları dahil et (<!--nextpage-->)"
|
615 |
+
|
616 |
+
msgid "Include posts"
|
617 |
+
msgstr "Blog yazılarını dahil et"
|
618 |
+
|
619 |
+
msgid "Include static pages"
|
620 |
+
msgstr "Sabit sayfaları dahil et"
|
621 |
+
|
622 |
+
msgid "Include categories"
|
623 |
+
msgstr "Kategorileri dahil et"
|
624 |
+
|
625 |
+
msgid "Include archives"
|
626 |
+
msgstr "Arşivleri dahil et"
|
627 |
+
|
628 |
+
msgid "Include tag pages"
|
629 |
+
msgstr "Etiket sayfalarını dahil et"
|
630 |
+
|
631 |
+
msgid "Include author pages"
|
632 |
+
msgstr "Yazar sayfalarını dahil et"
|
633 |
+
|
634 |
+
msgid "Change frequencies"
|
635 |
+
msgstr "Sıklıkları değiştir"
|
636 |
+
|
637 |
+
msgid "Please note that the value of this tag is considered a hint and not a command. Even though search engine crawlers consider this information when making decisions, they may crawl pages marked \"hourly\" less frequently than that, and they may crawl pages marked \"yearly\" more frequently than that. It is also likely that crawlers will periodically crawl pages marked \"never\" so that they can handle unexpected changes to those pages."
|
638 |
+
msgstr "Lütfen bu etiketin bir ipucu olduğuna, bir komut olmadığına dikkat edin. Her ne kadar arama motoru robotları bu bilgiyi karar verirken göz önünde bulunduruyor olsa da; "her saat" olarak işaretlenen sayfaları da daha az sıklıkla tarayabilir, "her yıl" olarak işaretlenen sayfaları da daha sık tarayabilir. Hatta robotlar bazen "hiçbir zaman" olarak işaretlenmiş sayfaları da, beklenmedik değişiklikleri ele alabilmek için tarayabilirler."
|
639 |
+
|
640 |
+
msgid "Homepage"
|
641 |
+
msgstr "Anasayfa"
|
642 |
+
|
643 |
+
msgid "Posts"
|
644 |
+
msgstr "Blog yazıları"
|
645 |
+
|
646 |
+
msgid "Static pages"
|
647 |
+
msgstr "Sabit sayfalar"
|
648 |
+
|
649 |
+
msgid "Categories"
|
650 |
+
msgstr "Kategoriler"
|
651 |
+
|
652 |
+
msgid "The current archive of this month (Should be the same like your homepage)"
|
653 |
+
msgstr "Bu ayın arşivi (anasayfanızla aynı olacaktır)"
|
654 |
+
|
655 |
+
msgid "Older archives (Changes only if you edit an old post)"
|
656 |
+
msgstr "Daha eski arşivler (Yalnızca eski bir blog yazısını düzenlerseniz güncellenir)"
|
657 |
+
|
658 |
+
msgid "Tag pages"
|
659 |
+
msgstr "Etiket sayfaları"
|
660 |
+
|
661 |
+
msgid "Author pages"
|
662 |
+
msgstr "Yazar sayfaları"
|
663 |
+
|
664 |
+
msgid "Priorities"
|
665 |
+
msgstr "Öncelikler"
|
666 |
+
|
667 |
+
msgid "Posts (If auto calculation is disabled)"
|
668 |
+
msgstr "Blog yazıları (yalnızca otomatik hesaplama devre dışıysa)"
|
669 |
+
|
670 |
+
msgid "Minimum post priority (Even if auto calculation is enabled)"
|
671 |
+
msgstr "En düşük blog yazısı önceliği (otomatik hesaplama devre dışı olsa bile)"
|
672 |
+
|
673 |
+
msgid "Archives"
|
674 |
+
msgstr "Arşivler"
|
675 |
+
|
676 |
+
msgid "Update options"
|
677 |
+
msgstr "Seçenekleri güncelle"
|
678 |
+
|
679 |
+
msgid "Reset options"
|
680 |
+
msgstr "Seçenekleri sıfırla"
|
681 |
+
|
682 |
+
msgid "XML-Sitemap Generator"
|
683 |
+
msgstr "XML Site Haritası Oluşturucusu"
|
684 |
+
|
685 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2415
|
686 |
+
msgid "XML-Sitemap"
|
687 |
+
msgstr "XML-Sitemap"
|
688 |
+
|
lang/sitemap-zh_CN.mo
CHANGED
Binary file
|
lang/sitemap-zh_CN.po
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
"POT-Creation-Date: \n"
|
5 |
-
"PO-Revision-Date: 2008-
|
6 |
"Last-Translator: dupola <dupola.com@gmail.com>\n"
|
7 |
"Language-Team: dupola <dupola.com@gmail.com>\n"
|
8 |
"MIME-Version: 1.0\n"
|
@@ -10,9 +10,17 @@ msgstr ""
|
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
"X-Poedit-Language: Chinese\n"
|
12 |
"X-Poedit-Country: China\n"
|
13 |
-
"X-Poedit-Basepath: D:\\usr\\www\\wp-content\\plugins\\sitemap\n"
|
14 |
"X-Poedit-KeywordsList: _e;__\n"
|
15 |
-
"X-Poedit-SearchPath-0: D:\\usr\\www\\wp-content\\plugins\\sitemap\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:846
|
18 |
msgid "Comment Count"
|
@@ -38,13 +46,33 @@ msgstr "热门内容"
|
|
38 |
msgid "Uses the activated <a href=\"%1\">Popularity Contest Plugin</a> from <a href=\"%2\">Alex King</a>. See <a href=\"%3\">Settings</a> and <a href=\"%4\">Most Popular Posts</a>"
|
39 |
msgstr "使用已经激活的 <a href=\"%2\">Alex King</a> 的 <a href=\"%1\">热门日志插件</a>。 查看 <a href=\"%3\">设置</a> and <a href=\"%4\">最流行日志</a>"
|
40 |
|
41 |
-
#
|
42 |
-
msgid "
|
43 |
-
msgstr "
|
44 |
|
45 |
-
#
|
46 |
-
msgid "
|
47 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
|
49 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2600
|
50 |
msgid "Thank you very much for your donation. You help me to continue support and development of this plugin and other free software!"
|
@@ -63,6 +91,15 @@ msgstr "感谢你使用这个插件!你已经启用这个插件一个多月了
|
|
63 |
msgid "No thanks, please don't bug me anymore!"
|
64 |
msgstr "不,请别再再骚扰我啦!"
|
65 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2635
|
67 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2835
|
68 |
msgid "XML Sitemap Generator for WordPress"
|
@@ -97,6 +134,21 @@ msgstr "保存 Robots.txt 文件时出错"
|
|
97 |
msgid "The default configuration was restored."
|
98 |
msgstr "默认结构已经被修复。"
|
99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2851
|
101 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2868
|
102 |
msgid "open"
|
@@ -135,6 +187,10 @@ msgstr "关于这个插件:"
|
|
135 |
msgid "Plugin Homepage"
|
136 |
msgstr "插件主页"
|
137 |
|
|
|
|
|
|
|
|
|
138 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2887
|
139 |
msgid "Notify List"
|
140 |
msgstr "通告列表"
|
@@ -143,6 +199,10 @@ msgstr "通告列表"
|
|
143 |
msgid "Support Forum"
|
144 |
msgstr "支持论坛"
|
145 |
|
|
|
|
|
|
|
|
|
146 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2889
|
147 |
msgid "Donate with PayPal"
|
148 |
msgstr "通过 PayPal 捐赠"
|
@@ -161,15 +221,15 @@ msgstr "http://dupola.com"
|
|
161 |
|
162 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2895
|
163 |
msgid "Sitemap Resources:"
|
164 |
-
msgstr "Sitemap
|
165 |
|
166 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2897
|
167 |
msgid "Webmaster Tools"
|
168 |
-
msgstr "
|
169 |
|
170 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2898
|
171 |
msgid "Webmaster Blog"
|
172 |
-
msgstr "
|
173 |
|
174 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2900
|
175 |
msgid "Site Explorer"
|
@@ -290,16 +350,20 @@ msgstr "通知 MSN.com 时出错。<a href=\"%s\">查看结果</a>"
|
|
290 |
|
291 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3002
|
292 |
msgid "The building process took about <b>%time% seconds</b> to complete and used %memory% MB of memory."
|
293 |
-
msgstr "此次建立大约用了 <b>%time%
|
294 |
|
295 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3004
|
296 |
msgid "The building process took about <b>%time% seconds</b> to complete."
|
297 |
-
msgstr "此次建立用了大约 <b>%time%
|
298 |
|
299 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3008
|
300 |
msgid "The content of your sitemap <strong>didn't change</strong> since the last time so the files were not written and no search engine was pinged."
|
301 |
msgstr "从上次这个文件不可写以后,你的 sitemap 就没有<strong>更新</strong> ,并且也没有通知任何搜索引擎。"
|
302 |
|
|
|
|
|
|
|
|
|
303 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3012
|
304 |
msgid "The last run didn't finish! Maybe you can raise the memory or time limit for PHP scripts. <a href=\"%url%\">Learn more</a>"
|
305 |
msgstr "上次运行没有完成!你应该为 PHP scripts 增加内存或时间限制。<a href=\"%url%\">学习更多</a>"
|
@@ -314,7 +378,7 @@ msgstr "上次执行时间 %timeused% 秒,你的服务器限制是 %timelimit%
|
|
314 |
|
315 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3022
|
316 |
msgid "The script stopped around post number %lastpost% (+/- 100)"
|
317 |
-
msgstr "
|
318 |
|
319 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3025
|
320 |
#, php-format
|
@@ -452,7 +516,7 @@ msgstr "增加内存限制到:"
|
|
452 |
|
453 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3127
|
454 |
msgid "e.g. \"4M\", \"16M\""
|
455 |
-
msgstr "
|
456 |
|
457 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3130
|
458 |
msgid "Try to increase the execution time limit to:"
|
@@ -476,7 +540,7 @@ msgstr "你的 .xsl 文件的绝对或相对路径"
|
|
476 |
|
477 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3152
|
478 |
msgid "Enable MySQL standard mode. Use this only if you're getting MySQL errors. (Needs much more memory!)"
|
479 |
-
msgstr "启用 MySQL 标准模式。仅在 MySQL 发生错误的时候使用。(
|
480 |
|
481 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3166
|
482 |
msgid "Build the sitemap in a background process (You don't have to wait when you save a post)"
|
@@ -505,7 +569,7 @@ msgstr "注意"
|
|
505 |
|
506 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3152
|
507 |
msgid "If your blog is in a subdirectory and you want to add pages which are NOT in the blog directory or beneath, you MUST place your sitemap file in the root directory (Look at the "Location of your sitemap file" section on this page)!"
|
508 |
-
msgstr "如果你的 blog 在子目录里,你要添加 blog 目录或下级目录没有的页面,你必须将 sitemap 文件放到这个目录里(
|
509 |
|
510 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3154
|
511 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3300
|
@@ -611,6 +675,10 @@ msgstr "sitemap 内容"
|
|
611 |
msgid "Include homepage"
|
612 |
msgstr "包含首页"
|
613 |
|
|
|
|
|
|
|
|
|
614 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3411
|
615 |
msgid "Include posts"
|
616 |
msgstr "包含日志"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Google XML Sitemaps 3.1\n"
|
4 |
"POT-Creation-Date: \n"
|
5 |
+
"PO-Revision-Date: 2008-05-23 21:08+0800\n"
|
6 |
"Last-Translator: dupola <dupola.com@gmail.com>\n"
|
7 |
"Language-Team: dupola <dupola.com@gmail.com>\n"
|
8 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
"X-Poedit-Language: Chinese\n"
|
12 |
"X-Poedit-Country: China\n"
|
13 |
+
"X-Poedit-Basepath: D:\\usr\\www\\wp-content\\plugins\\google-sitemap-generator\n"
|
14 |
"X-Poedit-KeywordsList: _e;__\n"
|
15 |
+
"X-Poedit-SearchPath-0: D:\\usr\\www\\wp-content\\plugins\\google-sitemap-generator\n"
|
16 |
+
|
17 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2415
|
18 |
+
msgid "XML-Sitemap Generator"
|
19 |
+
msgstr "XML-Sitemap 生成器"
|
20 |
+
|
21 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2415
|
22 |
+
msgid "XML-Sitemap"
|
23 |
+
msgstr "XML-Sitemap"
|
24 |
|
25 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:846
|
26 |
msgid "Comment Count"
|
46 |
msgid "Uses the activated <a href=\"%1\">Popularity Contest Plugin</a> from <a href=\"%2\">Alex King</a>. See <a href=\"%3\">Settings</a> and <a href=\"%4\">Most Popular Posts</a>"
|
47 |
msgstr "使用已经激活的 <a href=\"%2\">Alex King</a> 的 <a href=\"%1\">热门日志插件</a>。 查看 <a href=\"%3\">设置</a> and <a href=\"%4\">最流行日志</a>"
|
48 |
|
49 |
+
# D:\usr\www\wp-content\plugins\google-sitemap-generator/sitemap-core.php:1123
|
50 |
+
msgid "Always"
|
51 |
+
msgstr "总是"
|
52 |
|
53 |
+
# D:\usr\www\wp-content\plugins\google-sitemap-generator/sitemap-core.php:1124
|
54 |
+
msgid "Hourly"
|
55 |
+
msgstr "每小时"
|
56 |
+
|
57 |
+
# D:\usr\www\wp-content\plugins\google-sitemap-generator/sitemap-core.php:1125
|
58 |
+
msgid "Daily"
|
59 |
+
msgstr "每天"
|
60 |
+
|
61 |
+
# D:\usr\www\wp-content\plugins\google-sitemap-generator/sitemap-core.php:1126
|
62 |
+
msgid "Weekly"
|
63 |
+
msgstr "每周"
|
64 |
+
|
65 |
+
# D:\usr\www\wp-content\plugins\google-sitemap-generator/sitemap-core.php:1127
|
66 |
+
msgid "Monthly"
|
67 |
+
msgstr "每月"
|
68 |
+
|
69 |
+
# D:\usr\www\wp-content\plugins\google-sitemap-generator/sitemap-core.php:1128
|
70 |
+
msgid "Yearly"
|
71 |
+
msgstr "每月"
|
72 |
+
|
73 |
+
# D:\usr\www\wp-content\plugins\google-sitemap-generator/sitemap-core.php:1129
|
74 |
+
msgid "Never"
|
75 |
+
msgstr "从不"
|
76 |
|
77 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2600
|
78 |
msgid "Thank you very much for your donation. You help me to continue support and development of this plugin and other free software!"
|
91 |
msgid "No thanks, please don't bug me anymore!"
|
92 |
msgstr "不,请别再再骚扰我啦!"
|
93 |
|
94 |
+
# D:\usr\www\wp-content\plugins\google-sitemap-generator/sitemap-ui.php:67
|
95 |
+
msgid "Your sitemap is beeing refreshed at the moment. Depending on your blog size this might take some time!"
|
96 |
+
msgstr "你的 sitemap 已经更新了。Blog 配置不同,它完全生效的时间也不同。"
|
97 |
+
|
98 |
+
# D:\usr\www\wp-content\plugins\google-sitemap-generator/sitemap-ui.php:69
|
99 |
+
#, php-format
|
100 |
+
msgid "Your sitemap will be refreshed in %s seconds. Depending on your blog size this might take some time!"
|
101 |
+
msgstr "你的 sitemap 将在 %s 秒内更新,Blog 配置不同,它完全生效的时间也不同。"
|
102 |
+
|
103 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2635
|
104 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2835
|
105 |
msgid "XML Sitemap Generator for WordPress"
|
134 |
msgid "The default configuration was restored."
|
135 |
msgstr "默认结构已经被修复。"
|
136 |
|
137 |
+
# D:\usr\www\wp-content\plugins\google-sitemap-generator/sitemap-ui.php:374
|
138 |
+
#, php-format
|
139 |
+
msgid "There is a new version of %1$s available. <a href=\"%2$s\">Download version %3$s here</a>."
|
140 |
+
msgstr "XML Sitemap 有新版本 %1$s 发布了。 <a href=\"%2$s\">这里来下载 %3$s 版</a>。"
|
141 |
+
|
142 |
+
# D:\usr\www\wp-content\plugins\google-sitemap-generator/sitemap-ui.php:376
|
143 |
+
#, php-format
|
144 |
+
msgid "There is a new version of %1$s available. <a href=\"%2$s\">Download version %3$s here</a> <em>automatic upgrade unavailable for this plugin</em>."
|
145 |
+
msgstr "XML Sitemap 的新版本 %1$s 发布了. <a href=\"%2$s\">到这里下载 %3$s 版</a> 。<em>无法自动更新这个插件</em>."
|
146 |
+
|
147 |
+
# D:\usr\www\wp-content\plugins\google-sitemap-generator/sitemap-ui.php:378
|
148 |
+
#, php-format
|
149 |
+
msgid "There is a new version of %1$s available. <a href=\"%2$s\">Download version %3$s here</a> or <a href=\"%4$s\">upgrade automatically</a>."
|
150 |
+
msgstr "XML Sitemap 新版 %1$s 发布了。 <a href=\"%2$s\">到这里下载 %3$s 版</a> 或者 <a href=\"%4$s\">自动升级</a>。"
|
151 |
+
|
152 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2851
|
153 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2868
|
154 |
msgid "open"
|
187 |
msgid "Plugin Homepage"
|
188 |
msgstr "插件主页"
|
189 |
|
190 |
+
# D:\usr\www\wp-content\plugins\google-sitemap-generator/sitemap-ui.php:438
|
191 |
+
msgid "Suggest a Feature"
|
192 |
+
msgstr "建议新功能"
|
193 |
+
|
194 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2887
|
195 |
msgid "Notify List"
|
196 |
msgstr "通告列表"
|
199 |
msgid "Support Forum"
|
200 |
msgstr "支持论坛"
|
201 |
|
202 |
+
# D:\usr\www\wp-content\plugins\google-sitemap-generator/sitemap-ui.php:441
|
203 |
+
msgid "Report a Bug"
|
204 |
+
msgstr "报告 Bug"
|
205 |
+
|
206 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2889
|
207 |
msgid "Donate with PayPal"
|
208 |
msgstr "通过 PayPal 捐赠"
|
221 |
|
222 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2895
|
223 |
msgid "Sitemap Resources:"
|
224 |
+
msgstr "Sitemap 资源:"
|
225 |
|
226 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2897
|
227 |
msgid "Webmaster Tools"
|
228 |
+
msgstr "Webmaster Tools"
|
229 |
|
230 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2898
|
231 |
msgid "Webmaster Blog"
|
232 |
+
msgstr "Webmaster Blog"
|
233 |
|
234 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2900
|
235 |
msgid "Site Explorer"
|
350 |
|
351 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3002
|
352 |
msgid "The building process took about <b>%time% seconds</b> to complete and used %memory% MB of memory."
|
353 |
+
msgstr "此次建立大约用了 <b>%time% 秒</b> 完成,使用了 %memory% MB 内存。"
|
354 |
|
355 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3004
|
356 |
msgid "The building process took about <b>%time% seconds</b> to complete."
|
357 |
+
msgstr "此次建立用了大约 <b>%time% 秒</b> 完成。"
|
358 |
|
359 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3008
|
360 |
msgid "The content of your sitemap <strong>didn't change</strong> since the last time so the files were not written and no search engine was pinged."
|
361 |
msgstr "从上次这个文件不可写以后,你的 sitemap 就没有<strong>更新</strong> ,并且也没有通知任何搜索引擎。"
|
362 |
|
363 |
+
# D:\usr\www\wp-content\plugins\google-sitemap-generator/sitemap-ui.php:586
|
364 |
+
msgid "The building process might still be active! Reload the page in a few seconds and check if something has changed."
|
365 |
+
msgstr "这项处理将会生效!几秒钟后刷新这个页面,查看是否有所变化。"
|
366 |
+
|
367 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3012
|
368 |
msgid "The last run didn't finish! Maybe you can raise the memory or time limit for PHP scripts. <a href=\"%url%\">Learn more</a>"
|
369 |
msgstr "上次运行没有完成!你应该为 PHP scripts 增加内存或时间限制。<a href=\"%url%\">学习更多</a>"
|
378 |
|
379 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3022
|
380 |
msgid "The script stopped around post number %lastpost% (+/- 100)"
|
381 |
+
msgstr "这个脚本停止于这篇日志: %lastpost% (+/- 100)"
|
382 |
|
383 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3025
|
384 |
#, php-format
|
516 |
|
517 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3127
|
518 |
msgid "e.g. \"4M\", \"16M\""
|
519 |
+
msgstr "比如: \"4M\", \"16M\""
|
520 |
|
521 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3130
|
522 |
msgid "Try to increase the execution time limit to:"
|
540 |
|
541 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3152
|
542 |
msgid "Enable MySQL standard mode. Use this only if you're getting MySQL errors. (Needs much more memory!)"
|
543 |
+
msgstr "启用 MySQL 标准模式。仅在 MySQL 发生错误的时候使用。(将会占用更多内存!)"
|
544 |
|
545 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3166
|
546 |
msgid "Build the sitemap in a background process (You don't have to wait when you save a post)"
|
569 |
|
570 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3152
|
571 |
msgid "If your blog is in a subdirectory and you want to add pages which are NOT in the blog directory or beneath, you MUST place your sitemap file in the root directory (Look at the "Location of your sitemap file" section on this page)!"
|
572 |
+
msgstr "如果你的 blog 在子目录里,你要添加 blog 目录或下级目录没有的页面,你必须将 sitemap 文件放到这个目录里(查看本页的 " sitemap 文件的位置 " 一节)!"
|
573 |
|
574 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3154
|
575 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3300
|
675 |
msgid "Include homepage"
|
676 |
msgstr "包含首页"
|
677 |
|
678 |
+
# D:\usr\www\wp-content\plugins\google-sitemap-generator/sitemap-ui.php:1013
|
679 |
+
msgid "Include all pages of multi-page posts (<!--nextpage-->)"
|
680 |
+
msgstr "包括所有多重页面 (<!--nextpage-->)"
|
681 |
+
|
682 |
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3411
|
683 |
msgid "Include posts"
|
684 |
msgstr "包含日志"
|
lang/sitemap.pot
CHANGED
@@ -1,764 +1,779 @@
|
|
1 |
-
# [Countryname] Language File for sitemap (sitemap-[localname].po)
|
2 |
-
# Copyright (C) 2005 [name] : [URL]
|
3 |
-
# This file is distributed under the same license as the WordPress package.
|
4 |
-
# [name] <[mail-address]>, 2005.
|
5 |
-
# $Id: sitemap.pot
|
6 |
-
#
|
7 |
-
msgid ""
|
8 |
-
msgstr ""
|
9 |
-
"Project-Id-Version: sitemap\n"
|
10 |
-
"Report-Msgid-Bugs-To: <[mail-address]>\n"
|
11 |
-
"POT-Creation-Date: 2005-06-15 00:00+0000\n"
|
12 |
-
"PO-Revision-Date: 2008-05-
|
13 |
-
"Last-Translator: Arne Brachhold <http://www.arnebrachhold.de>\n"
|
14 |
-
"MIME-Version: 1.0\n"
|
15 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
-
"Content-Transfer-Encoding: 8bit\n"
|
17 |
-
"Language-Team: \n"
|
18 |
-
"X-Poedit-KeywordsList: _e;__\n"
|
19 |
-
"X-Poedit-Basepath: .\n"
|
20 |
-
"X-Poedit-SearchPath-0: C:\\Inetpub\\wwwroot\\wp\\wp-content\\plugins\\sitemap_beta\n"
|
21 |
-
|
22 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:846
|
23 |
-
msgid "Comment Count"
|
24 |
-
msgstr ""
|
25 |
-
|
26 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:858
|
27 |
-
msgid "Uses the number of comments of the post to calculate the priority"
|
28 |
-
msgstr ""
|
29 |
-
|
30 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:918
|
31 |
-
msgid "Comment Average"
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:930
|
35 |
-
msgid "Uses the average comment count to calculate the priority"
|
36 |
-
msgstr ""
|
37 |
-
|
38 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:993
|
39 |
-
msgid "Popularity Contest"
|
40 |
-
msgstr ""
|
41 |
-
|
42 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:1005
|
43 |
-
msgid "Uses the activated <a href=\"%1\">Popularity Contest Plugin</a> from <a href=\"%2\">Alex King</a>. See <a href=\"%3\">Settings</a> and <a href=\"%4\">Most Popular Posts</a>"
|
44 |
-
msgstr ""
|
45 |
-
|
46 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-core.php:1118
|
47 |
-
msgid "Always"
|
48 |
-
msgstr ""
|
49 |
-
|
50 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-core.php:1119
|
51 |
-
msgid "Hourly"
|
52 |
-
msgstr ""
|
53 |
-
|
54 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-core.php:1120
|
55 |
-
msgid "Daily"
|
56 |
-
msgstr ""
|
57 |
-
|
58 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-core.php:1121
|
59 |
-
msgid "Weekly"
|
60 |
-
msgstr ""
|
61 |
-
|
62 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-core.php:1122
|
63 |
-
msgid "Monthly"
|
64 |
-
msgstr ""
|
65 |
-
|
66 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-core.php:1123
|
67 |
-
msgid "Yearly"
|
68 |
-
msgstr ""
|
69 |
-
|
70 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-core.php:1124
|
71 |
-
msgid "Never"
|
72 |
-
msgstr ""
|
73 |
-
|
74 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2600
|
75 |
-
msgid "Thank you very much for your donation. You help me to continue support and development of this plugin and other free software!"
|
76 |
-
msgstr ""
|
77 |
-
|
78 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2600
|
79 |
-
msgid "Hide this notice"
|
80 |
-
msgstr ""
|
81 |
-
|
82 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2657
|
83 |
-
#, php-format
|
84 |
-
msgid "Thanks for using this plugin! You've installed this plugin over a month ago. If it works and your are satisfied with the results, isn't it worth at least one dollar? <a href=\"%s\">Donations</a> help me to continue support and development of this <i>free</i> software! <a href=\"%s\">Sure, no problem!</a>"
|
85 |
-
msgstr ""
|
86 |
-
|
87 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2657
|
88 |
-
msgid "No thanks, please don't bug me anymore!"
|
89 |
-
msgstr ""
|
90 |
-
|
91 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:67
|
92 |
-
msgid "Your sitemap is
|
93 |
-
msgstr ""
|
94 |
-
|
95 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:69
|
96 |
-
#, php-format
|
97 |
-
msgid "Your sitemap will be refreshed in %s seconds. Depending on your blog size this might take some time!"
|
98 |
-
msgstr ""
|
99 |
-
|
100 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2635
|
101 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2835
|
102 |
-
msgid "XML Sitemap Generator for WordPress"
|
103 |
-
msgstr ""
|
104 |
-
|
105 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2740
|
106 |
-
msgid "Configuration updated"
|
107 |
-
msgstr ""
|
108 |
-
|
109 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2741
|
110 |
-
msgid "Error while saving options"
|
111 |
-
msgstr ""
|
112 |
-
|
113 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2743
|
114 |
-
msgid "Pages saved"
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2744
|
118 |
-
msgid "Error while saving pages"
|
119 |
-
msgstr ""
|
120 |
-
|
121 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2748
|
122 |
-
#, php-format
|
123 |
-
msgid "<a href=\"%s\">Robots.txt</a> file saved"
|
124 |
-
msgstr ""
|
125 |
-
|
126 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2750
|
127 |
-
msgid "Error while saving Robots.txt file"
|
128 |
-
msgstr ""
|
129 |
-
|
130 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2758
|
131 |
-
msgid "The default configuration was restored."
|
132 |
-
msgstr ""
|
133 |
-
|
134 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
135 |
-
|
136 |
-
msgid "
|
137 |
-
msgstr ""
|
138 |
-
|
139 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
140 |
-
|
141 |
-
msgid "
|
142 |
-
msgstr ""
|
143 |
-
|
144 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
145 |
-
|
146 |
-
msgid "
|
147 |
-
msgstr ""
|
148 |
-
|
149 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
150 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
151 |
-
msgid "
|
152 |
-
msgstr ""
|
153 |
-
|
154 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
155 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
156 |
-
msgid "
|
157 |
-
msgstr ""
|
158 |
-
|
159 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
160 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
161 |
-
msgid "
|
162 |
-
msgstr ""
|
163 |
-
|
164 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3059
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
#
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# [Countryname] Language File for sitemap (sitemap-[localname].po)
|
2 |
+
# Copyright (C) 2005 [name] : [URL]
|
3 |
+
# This file is distributed under the same license as the WordPress package.
|
4 |
+
# [name] <[mail-address]>, 2005.
|
5 |
+
# $Id: sitemap.pot 48028 2008-05-27 14:29:50Z arnee $
|
6 |
+
#
|
7 |
+
msgid ""
|
8 |
+
msgstr ""
|
9 |
+
"Project-Id-Version: sitemap\n"
|
10 |
+
"Report-Msgid-Bugs-To: <[mail-address]>\n"
|
11 |
+
"POT-Creation-Date: 2005-06-15 00:00+0000\n"
|
12 |
+
"PO-Revision-Date: 2008-05-27 16:06+0100\n"
|
13 |
+
"Last-Translator: Arne Brachhold <http://www.arnebrachhold.de>\n"
|
14 |
+
"MIME-Version: 1.0\n"
|
15 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
+
"Content-Transfer-Encoding: 8bit\n"
|
17 |
+
"Language-Team: \n"
|
18 |
+
"X-Poedit-KeywordsList: _e;__\n"
|
19 |
+
"X-Poedit-Basepath: .\n"
|
20 |
+
"X-Poedit-SearchPath-0: C:\\Inetpub\\wwwroot\\wp\\wp-content\\plugins\\sitemap_beta\n"
|
21 |
+
|
22 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:846
|
23 |
+
msgid "Comment Count"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:858
|
27 |
+
msgid "Uses the number of comments of the post to calculate the priority"
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:918
|
31 |
+
msgid "Comment Average"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:930
|
35 |
+
msgid "Uses the average comment count to calculate the priority"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:993
|
39 |
+
msgid "Popularity Contest"
|
40 |
+
msgstr ""
|
41 |
+
|
42 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:1005
|
43 |
+
msgid "Uses the activated <a href=\"%1\">Popularity Contest Plugin</a> from <a href=\"%2\">Alex King</a>. See <a href=\"%3\">Settings</a> and <a href=\"%4\">Most Popular Posts</a>"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-core.php:1118
|
47 |
+
msgid "Always"
|
48 |
+
msgstr ""
|
49 |
+
|
50 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-core.php:1119
|
51 |
+
msgid "Hourly"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-core.php:1120
|
55 |
+
msgid "Daily"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-core.php:1121
|
59 |
+
msgid "Weekly"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-core.php:1122
|
63 |
+
msgid "Monthly"
|
64 |
+
msgstr ""
|
65 |
+
|
66 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-core.php:1123
|
67 |
+
msgid "Yearly"
|
68 |
+
msgstr ""
|
69 |
+
|
70 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-core.php:1124
|
71 |
+
msgid "Never"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2600
|
75 |
+
msgid "Thank you very much for your donation. You help me to continue support and development of this plugin and other free software!"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2600
|
79 |
+
msgid "Hide this notice"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2657
|
83 |
+
#, php-format
|
84 |
+
msgid "Thanks for using this plugin! You've installed this plugin over a month ago. If it works and your are satisfied with the results, isn't it worth at least one dollar? <a href=\"%s\">Donations</a> help me to continue support and development of this <i>free</i> software! <a href=\"%s\">Sure, no problem!</a>"
|
85 |
+
msgstr ""
|
86 |
+
|
87 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2657
|
88 |
+
msgid "No thanks, please don't bug me anymore!"
|
89 |
+
msgstr ""
|
90 |
+
|
91 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:67
|
92 |
+
msgid "Your sitemap is being refreshed at the moment. Depending on your blog size this might take some time!"
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:69
|
96 |
+
#, php-format
|
97 |
+
msgid "Your sitemap will be refreshed in %s seconds. Depending on your blog size this might take some time!"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2635
|
101 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2835
|
102 |
+
msgid "XML Sitemap Generator for WordPress"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2740
|
106 |
+
msgid "Configuration updated"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2741
|
110 |
+
msgid "Error while saving options"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2743
|
114 |
+
msgid "Pages saved"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2744
|
118 |
+
msgid "Error while saving pages"
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2748
|
122 |
+
#, php-format
|
123 |
+
msgid "<a href=\"%s\">Robots.txt</a> file saved"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2750
|
127 |
+
msgid "Error while saving Robots.txt file"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2758
|
131 |
+
msgid "The default configuration was restored."
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:374
|
135 |
+
#, php-format
|
136 |
+
msgid "There is a new version of %1$s available. <a href=\"%2$s\">Download version %3$s here</a>."
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:376
|
140 |
+
#, php-format
|
141 |
+
msgid "There is a new version of %1$s available. <a href=\"%2$s\">Download version %3$s here</a> <em>automatic upgrade unavailable for this plugin</em>."
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:378
|
145 |
+
#, php-format
|
146 |
+
msgid "There is a new version of %1$s available. <a href=\"%2$s\">Download version %3$s here</a> or <a href=\"%4$s\">upgrade automatically</a>."
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2851
|
150 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2868
|
151 |
+
msgid "open"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2852
|
155 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2869
|
156 |
+
msgid "close"
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2853
|
160 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2870
|
161 |
+
msgid "click-down and drag to move this box"
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2854
|
165 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2871
|
166 |
+
msgid "click to %toggle% this box"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2855
|
170 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2872
|
171 |
+
msgid "use the arrow keys to move this box"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2856
|
175 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2873
|
176 |
+
msgid ", or press the enter key to %toggle% it"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2884
|
180 |
+
msgid "About this Plugin:"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2886
|
184 |
+
msgid "Plugin Homepage"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:421
|
188 |
+
msgid "Suggest a Feature"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2887
|
192 |
+
msgid "Notify List"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2888
|
196 |
+
msgid "Support Forum"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:424
|
200 |
+
msgid "Report a Bug"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2889
|
204 |
+
msgid "Donate with PayPal"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2890
|
208 |
+
msgid "My Amazon Wish List"
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2891
|
212 |
+
msgid "translator_name"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2891
|
216 |
+
msgid "translator_url"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2895
|
220 |
+
msgid "Sitemap Resources:"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2897
|
224 |
+
msgid "Webmaster Tools"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2898
|
228 |
+
msgid "Webmaster Blog"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2900
|
232 |
+
msgid "Site Explorer"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2901
|
236 |
+
msgid "Search Blog"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3010
|
240 |
+
msgid "Webmaster Center Blog"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2903
|
244 |
+
msgid "Sitemaps Protocol"
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2904
|
248 |
+
msgid "Official Sitemaps FAQ"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2905
|
252 |
+
msgid "My Sitemaps FAQ"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2910
|
256 |
+
msgid "Recent Donations:"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2914
|
260 |
+
msgid "List of the donors"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2916
|
264 |
+
msgid "Hide this list"
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2919
|
268 |
+
msgid "Thanks for your support!"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2931
|
272 |
+
msgid "Status"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2941
|
276 |
+
#, php-format
|
277 |
+
msgid "The sitemap wasn't built yet. <a href=\"%s\">Click here</a> to build it the first time."
|
278 |
+
msgstr ""
|
279 |
+
|
280 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2947
|
281 |
+
msgid "Your <a href=\"%url%\">sitemap</a> was last built on <b>%date%</b>."
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2949
|
285 |
+
msgid "There was a problem writing your sitemap file. Make sure the file exists and is writable. <a href=\"%url%\">Learn more</a"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2956
|
289 |
+
msgid "Your sitemap (<a href=\"%url%\">zipped</a>) was last built on <b>%date%</b>."
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2958
|
293 |
+
msgid "There was a problem writing your zipped sitemap file. Make sure the file exists and is writable. <a href=\"%url%\">Learn more</a"
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2964
|
297 |
+
msgid "Google was <b>successfully notified</b> about changes."
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2967
|
301 |
+
msgid "It took %time% seconds to notify Google, maybe you want to disable this feature to reduce the building time."
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3011
|
305 |
+
#, php-format
|
306 |
+
msgid "There was a problem while notifying Google. <a href=\"%s\">View result</a>"
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2976
|
310 |
+
msgid "YAHOO was <b>successfully notified</b> about changes."
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2979
|
314 |
+
msgid "It took %time% seconds to notify YAHOO, maybe you want to disable this feature to reduce the building time."
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3023
|
318 |
+
#, php-format
|
319 |
+
msgid "There was a problem while notifying YAHOO. <a href=\"%s\">View result</a>"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3097
|
323 |
+
msgid "MSN was <b>successfully notified</b> about changes."
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3100
|
327 |
+
msgid "It took %time% seconds to notify MSN.com, maybe you want to disable this feature to reduce the building time."
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3103
|
331 |
+
#, php-format
|
332 |
+
msgid "There was a problem while notifying MSN.com. <a href=\"%s\">View result</a>"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2988
|
336 |
+
msgid "Ask.com was <b>successfully notified</b> about changes."
|
337 |
+
msgstr ""
|
338 |
+
|
339 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2991
|
340 |
+
msgid "It took %time% seconds to notify Ask.com, maybe you want to disable this feature to reduce the building time."
|
341 |
+
msgstr ""
|
342 |
+
|
343 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3035
|
344 |
+
#, php-format
|
345 |
+
msgid "There was a problem while notifying Ask.com. <a href=\"%s\">View result</a>"
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3002
|
349 |
+
msgid "The building process took about <b>%time% seconds</b> to complete and used %memory% MB of memory."
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3004
|
353 |
+
msgid "The building process took about <b>%time% seconds</b> to complete."
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3008
|
357 |
+
msgid "The content of your sitemap <strong>didn't change</strong> since the last time so the files were not written and no search engine was pinged."
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:586
|
361 |
+
msgid "The building process might still be active! Reload the page in a few seconds and check if something has changed."
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3012
|
365 |
+
msgid "The last run didn't finish! Maybe you can raise the memory or time limit for PHP scripts. <a href=\"%url%\">Learn more</a>"
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3014
|
369 |
+
msgid "The last known memory usage of the script was %memused%MB, the limit of your server is %memlimit%."
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3018
|
373 |
+
msgid "The last known execution time of the script was %timeused% seconds, the limit of your server is %timelimit% seconds."
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3022
|
377 |
+
msgid "The script stopped around post number %lastpost% (+/- 100)"
|
378 |
+
msgstr ""
|
379 |
+
|
380 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3025
|
381 |
+
#, php-format
|
382 |
+
msgid "If you changed something on your server or blog, you should <a href=\"%s\">rebuild the sitemap</a> manually."
|
383 |
+
msgstr ""
|
384 |
+
|
385 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3027
|
386 |
+
#, php-format
|
387 |
+
msgid "If you encounter any problems with the build process you can use the <a href=\"%d\">debug function</a> to get more information."
|
388 |
+
msgstr ""
|
389 |
+
|
390 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3040
|
391 |
+
msgid "Basic Options"
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3044
|
395 |
+
msgid "Sitemap files:"
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3044
|
399 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3059
|
400 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3079
|
401 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3104
|
402 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3121
|
403 |
+
msgid "Learn more"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3049
|
407 |
+
msgid "Write a normal XML file (your filename)"
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3055
|
411 |
+
msgid "Write a gzipped file (your filename + .gz)"
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3059
|
415 |
+
msgid "Building mode:"
|
416 |
+
msgstr ""
|
417 |
+
|
418 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3064
|
419 |
+
msgid "Rebuild sitemap if you change the content of your blog"
|
420 |
+
msgstr ""
|
421 |
+
|
422 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3071
|
423 |
+
msgid "Enable manual sitemap building via GET Request"
|
424 |
+
msgstr ""
|
425 |
+
|
426 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3075
|
427 |
+
msgid "This will allow you to refresh your sitemap if an external tool wrote into the WordPress database without using the WordPress API. Use the following URL to start the process: <a href=\"%1\">%1</a> Please check the logfile above to see if sitemap was successfully built."
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3079
|
431 |
+
msgid "Update notification:"
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3083
|
435 |
+
msgid "Notify Google about updates of your Blog"
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3084
|
439 |
+
#, php-format
|
440 |
+
msgid "No registration required, but you can join the <a href=\"%s\">Google Webmaster Tools</a> to check crawling statistics."
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3209
|
444 |
+
msgid "Notify MSN Live Search about updates of your Blog"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3210
|
448 |
+
#, php-format
|
449 |
+
msgid "No registration required, but you can join the <a href=\"%s\">MSN Live Webmaster Tools</a> to check crawling statistics."
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3088
|
453 |
+
msgid "Notify Ask.com about updates of your Blog"
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3089
|
457 |
+
msgid "No registration required."
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3093
|
461 |
+
msgid "Notify YAHOO about updates of your Blog"
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3154
|
465 |
+
msgid "Your Application ID:"
|
466 |
+
msgstr ""
|
467 |
+
|
468 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3155
|
469 |
+
#, php-format
|
470 |
+
msgid "Don't you have such a key? <a href=\"%s1\">Request one here</a>!</a> %s2"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3099
|
474 |
+
#, php-format
|
475 |
+
msgid "Modify or create %s file in blog root which contains the sitemap location."
|
476 |
+
msgstr ""
|
477 |
+
|
478 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3102
|
479 |
+
msgid "File permissions: "
|
480 |
+
msgstr ""
|
481 |
+
|
482 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3107
|
483 |
+
msgid "OK, robots.txt is writable."
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3109
|
487 |
+
msgid "Error, robots.txt is not writable."
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3113
|
491 |
+
msgid "OK, robots.txt doesn't exist but the directory is writable."
|
492 |
+
msgstr ""
|
493 |
+
|
494 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3115
|
495 |
+
msgid "Error, robots.txt doesn't exist and the directory is not writable"
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3121
|
499 |
+
msgid "Advanced options:"
|
500 |
+
msgstr ""
|
501 |
+
|
502 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3124
|
503 |
+
msgid "Limit the number of posts in the sitemap:"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3124
|
507 |
+
msgid "Newer posts will be included first"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3127
|
511 |
+
msgid "Try to increase the memory limit to:"
|
512 |
+
msgstr ""
|
513 |
+
|
514 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3127
|
515 |
+
msgid "e.g. \"4M\", \"16M\""
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3130
|
519 |
+
msgid "Try to increase the execution time limit to:"
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3130
|
523 |
+
msgid "in seconds, e.g. \"60\" or \"0\" for unlimited"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3133
|
527 |
+
msgid "Include a XSLT stylesheet:"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3133
|
531 |
+
msgid "Use Default"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3133
|
535 |
+
msgid "Full or relative URL to your .xsl file"
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3152
|
539 |
+
msgid "Enable MySQL standard mode. Use this only if you're getting MySQL errors. (Needs much more memory!)"
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3166
|
543 |
+
msgid "Build the sitemap in a background process (You don't have to wait when you save a post)"
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3206
|
547 |
+
msgid "Exclude the following posts or pages:"
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3206
|
551 |
+
msgid "List of IDs, separated by comma"
|
552 |
+
msgstr ""
|
553 |
+
|
554 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3144
|
555 |
+
msgid "Additional pages"
|
556 |
+
msgstr ""
|
557 |
+
|
558 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3149
|
559 |
+
msgid "Here you can specify files or URLs which should be included in the sitemap, but do not belong to your Blog/WordPress.<br />For example, if your domain is www.foo.com and your blog is located on www.foo.com/blog you might want to include your homepage at www.foo.com"
|
560 |
+
msgstr ""
|
561 |
+
|
562 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3151
|
563 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3462
|
564 |
+
msgid "Note"
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3152
|
568 |
+
msgid "If your blog is in a subdirectory and you want to add pages which are NOT in the blog directory or beneath, you MUST place your sitemap file in the root directory (Look at the "Location of your sitemap file" section on this page)!"
|
569 |
+
msgstr ""
|
570 |
+
|
571 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3154
|
572 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3300
|
573 |
+
msgid "URL to the page"
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3155
|
577 |
+
msgid "Enter the URL to the page. Examples: http://www.foo.com/index.html or www.foo.com/home "
|
578 |
+
msgstr ""
|
579 |
+
|
580 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3157
|
581 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3301
|
582 |
+
msgid "Priority"
|
583 |
+
msgstr ""
|
584 |
+
|
585 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3158
|
586 |
+
msgid "Choose the priority of the page relative to the other pages. For example, your homepage might have a higher priority than your imprint."
|
587 |
+
msgstr ""
|
588 |
+
|
589 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3160
|
590 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3303
|
591 |
+
msgid "Last Changed"
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3161
|
595 |
+
msgid "Enter the date of the last change as YYYY-MM-DD (2005-12-31 for example) (optional)."
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3302
|
599 |
+
msgid "Change Frequency"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3304
|
603 |
+
msgid "#"
|
604 |
+
msgstr ""
|
605 |
+
|
606 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3309
|
607 |
+
msgid "No pages defined."
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3314
|
611 |
+
msgid "Add new page"
|
612 |
+
msgstr ""
|
613 |
+
|
614 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3325
|
615 |
+
msgid "Post Priority"
|
616 |
+
msgstr ""
|
617 |
+
|
618 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3329
|
619 |
+
msgid "Please select how the priority of each post should be calculated:"
|
620 |
+
msgstr ""
|
621 |
+
|
622 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3331
|
623 |
+
msgid "Do not use automatic priority calculation"
|
624 |
+
msgstr ""
|
625 |
+
|
626 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3331
|
627 |
+
msgid "All posts will have the same priority which is defined in "Priorities""
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3348
|
631 |
+
msgid "Location of your sitemap file"
|
632 |
+
msgstr ""
|
633 |
+
|
634 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3353
|
635 |
+
msgid "Automatic detection"
|
636 |
+
msgstr ""
|
637 |
+
|
638 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3357
|
639 |
+
msgid "Filename of the sitemap file"
|
640 |
+
msgstr ""
|
641 |
+
|
642 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3360
|
643 |
+
msgid "Detected Path"
|
644 |
+
msgstr ""
|
645 |
+
|
646 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3360
|
647 |
+
msgid "Detected URL"
|
648 |
+
msgstr ""
|
649 |
+
|
650 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3365
|
651 |
+
msgid "Custom location"
|
652 |
+
msgstr ""
|
653 |
+
|
654 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3369
|
655 |
+
msgid "Absolute or relative path to the sitemap file, including name."
|
656 |
+
msgstr ""
|
657 |
+
|
658 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3371
|
659 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3380
|
660 |
+
msgid "Example"
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3378
|
664 |
+
msgid "Complete URL to the sitemap file, including name."
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3397
|
668 |
+
msgid "Sitemap Content"
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3405
|
672 |
+
msgid "Include homepage"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3411
|
676 |
+
msgid "Include posts"
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap-ui.php:911
|
680 |
+
msgid "Include following pages of multi-page posts (<!--nextpage-->)"
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3417
|
684 |
+
msgid "Include static pages"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3423
|
688 |
+
msgid "Include categories"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3429
|
692 |
+
msgid "Include archives"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3436
|
696 |
+
msgid "Include tag pages"
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3443
|
700 |
+
msgid "Include author pages"
|
701 |
+
msgstr ""
|
702 |
+
|
703 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3457
|
704 |
+
msgid "Change frequencies"
|
705 |
+
msgstr ""
|
706 |
+
|
707 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3463
|
708 |
+
msgid "Please note that the value of this tag is considered a hint and not a command. Even though search engine crawlers consider this information when making decisions, they may crawl pages marked \"hourly\" less frequently than that, and they may crawl pages marked \"yearly\" more frequently than that. It is also likely that crawlers will periodically crawl pages marked \"never\" so that they can handle unexpected changes to those pages."
|
709 |
+
msgstr ""
|
710 |
+
|
711 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3469
|
712 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3535
|
713 |
+
msgid "Homepage"
|
714 |
+
msgstr ""
|
715 |
+
|
716 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3475
|
717 |
+
msgid "Posts"
|
718 |
+
msgstr ""
|
719 |
+
|
720 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3481
|
721 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3553
|
722 |
+
msgid "Static pages"
|
723 |
+
msgstr ""
|
724 |
+
|
725 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3487
|
726 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3559
|
727 |
+
msgid "Categories"
|
728 |
+
msgstr ""
|
729 |
+
|
730 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3493
|
731 |
+
msgid "The current archive of this month (Should be the same like your homepage)"
|
732 |
+
msgstr ""
|
733 |
+
|
734 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3499
|
735 |
+
msgid "Older archives (Changes only if you edit an old post)"
|
736 |
+
msgstr ""
|
737 |
+
|
738 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3506
|
739 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3572
|
740 |
+
msgid "Tag pages"
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3513
|
744 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3579
|
745 |
+
msgid "Author pages"
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3527
|
749 |
+
msgid "Priorities"
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3541
|
753 |
+
msgid "Posts (If auto calculation is disabled)"
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3547
|
757 |
+
msgid "Minimum post priority (Even if auto calculation is enabled)"
|
758 |
+
msgstr ""
|
759 |
+
|
760 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3565
|
761 |
+
msgid "Archives"
|
762 |
+
msgstr ""
|
763 |
+
|
764 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3590
|
765 |
+
msgid "Update options"
|
766 |
+
msgstr ""
|
767 |
+
|
768 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:3591
|
769 |
+
msgid "Reset options"
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2415
|
773 |
+
msgid "XML-Sitemap Generator"
|
774 |
+
msgstr ""
|
775 |
+
|
776 |
+
# C:\Inetpub\wwwroot\wp\wp-content\plugins\sitemap_beta/sitemap.php:2415
|
777 |
+
msgid "XML-Sitemap"
|
778 |
+
msgstr ""
|
779 |
+
|
readme-tr_TR.txt → readme-ar_AR.txt
RENAMED
File without changes
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: arnee
|
|
3 |
Donate link: http://www.arnebrachhold.de/redir/sitemap-paypal
|
4 |
Tags: google, sitemaps, google sitemaps, yahoo, msn, ask, live, xml sitemap, xml
|
5 |
Requires at least: 2.1
|
6 |
-
Stable tag: 3.0.
|
7 |
|
8 |
This plugin will create a Google sitemaps compliant XML-Sitemap of your WordPress blog.
|
9 |
|
@@ -11,6 +11,14 @@ This plugin will create a Google sitemaps compliant XML-Sitemap of your WordPres
|
|
11 |
|
12 |
This plugin will create a Google sitemaps compliant XML-Sitemap of your WordPress blog. It supports all of the WordPress generated pages as well as custom ones. Everytime you edit or create a post, your sitemap is updated and all major search engines that support the sitemap protocol, like ASK.com, Google, MSN Search and YAHOO, are notified about the update.
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
== Installation ==
|
15 |
|
16 |
1. Upload the full directory into your wp-content/plugins directory
|
3 |
Donate link: http://www.arnebrachhold.de/redir/sitemap-paypal
|
4 |
Tags: google, sitemaps, google sitemaps, yahoo, msn, ask, live, xml sitemap, xml
|
5 |
Requires at least: 2.1
|
6 |
+
Stable tag: 3.1.0.1
|
7 |
|
8 |
This plugin will create a Google sitemaps compliant XML-Sitemap of your WordPress blog.
|
9 |
|
11 |
|
12 |
This plugin will create a Google sitemaps compliant XML-Sitemap of your WordPress blog. It supports all of the WordPress generated pages as well as custom ones. Everytime you edit or create a post, your sitemap is updated and all major search engines that support the sitemap protocol, like ASK.com, Google, MSN Search and YAHOO, are notified about the update.
|
13 |
|
14 |
+
Plugin related Links:
|
15 |
+
|
16 |
+
* <a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/" title="Google XML Sitemaps Plugin for WordPress">Plugin Homepage</a>
|
17 |
+
* <a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/changelog/" title="Changelog of the Google XML Sitemaps Plugin for WordPress">Changelog</a>
|
18 |
+
* <a href="http://www.arnebrachhold.de/2006/04/07/google-sitemaps-faq-sitemap-issues-errors-and-problems/" title="Google Sitemaps FAQ">Plugin and sitemaps FAQ</a>
|
19 |
+
* <a href="http://wordpress.org/tags/google-sitemap-generator">Support Forum</a>
|
20 |
+
|
21 |
+
|
22 |
== Installation ==
|
23 |
|
24 |
1. Upload the full directory into your wp-content/plugins directory
|
sitemap-core.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
$Id: sitemap-core.php
|
5 |
|
6 |
*/
|
7 |
|
@@ -864,7 +864,7 @@ class GoogleSitemapGenerator {
|
|
864 |
/**
|
865 |
* @var Version of the generator in SVN
|
866 |
*/
|
867 |
-
var $_svnVersion = '$Id: sitemap-core.php
|
868 |
|
869 |
/**
|
870 |
* @var array The unserialized array with the stored options
|
@@ -1119,15 +1119,7 @@ class GoogleSitemapGenerator {
|
|
1119 |
*/
|
1120 |
function GoogleSitemapGenerator() {
|
1121 |
|
1122 |
-
|
1123 |
-
"always"=>__("Always","sitemap"),
|
1124 |
-
"hourly"=>__("Hourly","sitemap"),
|
1125 |
-
"daily"=>__("Daily","sitemap"),
|
1126 |
-
"weekly"=>__("Weekly","sitemap"),
|
1127 |
-
"monthly"=>__("Monthly","sitemap"),
|
1128 |
-
"yearly"=>__("Yearly","sitemap"),
|
1129 |
-
"never"=>__("Never","sitemap")
|
1130 |
-
);
|
1131 |
|
1132 |
|
1133 |
}
|
@@ -1209,6 +1201,17 @@ class GoogleSitemapGenerator {
|
|
1209 |
if(@file_exists($moFile) && is_readable($moFile)) load_textdomain('sitemap', $moFile);
|
1210 |
}
|
1211 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1212 |
$this->LoadOptions();
|
1213 |
$this->LoadPages();
|
1214 |
|
@@ -1797,7 +1800,7 @@ class GoogleSitemapGenerator {
|
|
1797 |
|
1798 |
$postPageStmt = '';
|
1799 |
|
1800 |
-
$inSubPages = ($this->GetOption('sm_in_posts_sub')===true
|
1801 |
|
1802 |
if($inSubPages && $this->GetOption('in_posts')===true) {
|
1803 |
$pageDivider='<!--nextpage-->';
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
$Id: sitemap-core.php 48034 2008-05-27 14:36:18Z arnee $
|
5 |
|
6 |
*/
|
7 |
|
864 |
/**
|
865 |
* @var Version of the generator in SVN
|
866 |
*/
|
867 |
+
var $_svnVersion = '$Id: sitemap-core.php 48034 2008-05-27 14:36:18Z arnee $';
|
868 |
|
869 |
/**
|
870 |
* @var array The unserialized array with the stored options
|
1119 |
*/
|
1120 |
function GoogleSitemapGenerator() {
|
1121 |
|
1122 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1123 |
|
1124 |
|
1125 |
}
|
1201 |
if(@file_exists($moFile) && is_readable($moFile)) load_textdomain('sitemap', $moFile);
|
1202 |
}
|
1203 |
|
1204 |
+
$this->_freqNames = array(
|
1205 |
+
"always"=>__("Always","sitemap"),
|
1206 |
+
"hourly"=>__("Hourly","sitemap"),
|
1207 |
+
"daily"=>__("Daily","sitemap"),
|
1208 |
+
"weekly"=>__("Weekly","sitemap"),
|
1209 |
+
"monthly"=>__("Monthly","sitemap"),
|
1210 |
+
"yearly"=>__("Yearly","sitemap"),
|
1211 |
+
"never"=>__("Never","sitemap")
|
1212 |
+
);
|
1213 |
+
|
1214 |
+
|
1215 |
$this->LoadOptions();
|
1216 |
$this->LoadPages();
|
1217 |
|
1800 |
|
1801 |
$postPageStmt = '';
|
1802 |
|
1803 |
+
$inSubPages = ($this->GetOption('sm_in_posts_sub')===true);
|
1804 |
|
1805 |
if($inSubPages && $this->GetOption('in_posts')===true) {
|
1806 |
$pageDivider='<!--nextpage-->';
|
sitemap-ui.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
-
$Id: sitemap-ui.php
|
5 |
|
6 |
*/
|
7 |
|
@@ -64,7 +64,7 @@ class GoogleSitemapGeneratorUI {
|
|
64 |
if($next) {
|
65 |
$diff = (time()-$next)*-1;
|
66 |
if($diff <= 0) {
|
67 |
-
$diffMsg = __('Your sitemap is
|
68 |
} else {
|
69 |
$diffMsg = str_replace("%s",$diff,__('Your sitemap will be refreshed in %s seconds. Depending on your blog size this might take some time!','sitemap'));
|
70 |
}
|
@@ -768,11 +768,8 @@ class GoogleSitemapGeneratorUI {
|
|
768 |
<script type="text/javascript">
|
769 |
//<![CDATA[
|
770 |
<?php
|
771 |
-
$freqVals = "'" . implode("','"
|
772 |
-
$
|
773 |
-
|
774 |
-
$freqNamesArr = array_map($transUpper,$this->sg->_freqNames);
|
775 |
-
$freqNames = "'" . implode("','",$freqNamesArr). "'";
|
776 |
?>
|
777 |
|
778 |
var changeFreqVals = new Array( <?php echo $freqVals; ?> );
|
@@ -789,113 +786,9 @@ class GoogleSitemapGeneratorUI {
|
|
789 |
}
|
790 |
}
|
791 |
?> ];
|
792 |
-
|
793 |
-
function sm_addPage(url,priority,changeFreq,lastChanged) {
|
794 |
-
|
795 |
-
var table = document.getElementById('sm_pageTable').getElementsByTagName('TBODY')[0];
|
796 |
-
var ce = function(ele) { return document.createElement(ele) };
|
797 |
-
var tr = ce('TR');
|
798 |
-
|
799 |
-
var td = ce('TD');
|
800 |
-
var iUrl = ce('INPUT');
|
801 |
-
iUrl.type="text";
|
802 |
-
iUrl.style.width='95%';
|
803 |
-
iUrl.name="sm_pages_ur[]";
|
804 |
-
if(url) iUrl.value=url;
|
805 |
-
td.appendChild(iUrl);
|
806 |
-
tr.appendChild(td);
|
807 |
-
|
808 |
-
td = ce('TD');
|
809 |
-
td.style.width='150px';
|
810 |
-
var iPrio = ce('SELECT');
|
811 |
-
iPrio.style.width='95%';
|
812 |
-
iPrio.name="sm_pages_pr[]";
|
813 |
-
for(var i=0; i <priorities.length; i++) {
|
814 |
-
var op = ce('OPTION');
|
815 |
-
op.text = priorities[i];
|
816 |
-
op.value = priorities[i];
|
817 |
-
try {
|
818 |
-
iPrio.add(op, null); // standards compliant; doesn't work in IE
|
819 |
-
} catch(ex) {
|
820 |
-
iPrio.add(op); // IE only
|
821 |
-
}
|
822 |
-
if(priority && priority == op.value) {
|
823 |
-
iPrio.selectedIndex = i;
|
824 |
-
}
|
825 |
-
}
|
826 |
-
td.appendChild(iPrio);
|
827 |
-
tr.appendChild(td);
|
828 |
-
|
829 |
-
td = ce('TD');
|
830 |
-
td.style.width='150px';
|
831 |
-
var iFreq = ce('SELECT');
|
832 |
-
iFreq.name="sm_pages_cf[]";
|
833 |
-
iFreq.style.width='95%';
|
834 |
-
for(var i=0; i<changeFreqVals.length; i++) {
|
835 |
-
var op = ce('OPTION');
|
836 |
-
op.text = changeFreqNames[i];
|
837 |
-
op.value = changeFreqVals[i];
|
838 |
-
try {
|
839 |
-
iFreq.add(op, null); // standards compliant; doesn't work in IE
|
840 |
-
} catch(ex) {
|
841 |
-
iFreq.add(op); // IE only
|
842 |
-
}
|
843 |
-
|
844 |
-
if(changeFreq && changeFreq == op.value) {
|
845 |
-
iFreq.selectedIndex = i;
|
846 |
-
}
|
847 |
-
}
|
848 |
-
td.appendChild(iFreq);
|
849 |
-
tr.appendChild(td);
|
850 |
-
|
851 |
-
var td = ce('TD');
|
852 |
-
td.style.width='150px';
|
853 |
-
var iChanged = ce('INPUT');
|
854 |
-
iChanged.type="text";
|
855 |
-
iChanged.name="sm_pages_lm[]";
|
856 |
-
iChanged.style.width='95%';
|
857 |
-
if(lastChanged) iChanged.value=lastChanged;
|
858 |
-
td.appendChild(iChanged);
|
859 |
-
tr.appendChild(td);
|
860 |
-
|
861 |
-
var td = ce('TD');
|
862 |
-
td.style.textAlign="center";
|
863 |
-
td.style.width='5px';
|
864 |
-
var iAction = ce('A');
|
865 |
-
iAction.innerHTML = 'X';
|
866 |
-
iAction.href="javascript:void(0);"
|
867 |
-
iAction.onclick = function() { table.removeChild(tr); };
|
868 |
-
td.appendChild(iAction);
|
869 |
-
tr.appendChild(td);
|
870 |
-
|
871 |
-
var mark = ce('INPUT');
|
872 |
-
mark.type="hidden";
|
873 |
-
mark.name="sm_pages_mark[]";
|
874 |
-
mark.value="true";
|
875 |
-
tr.appendChild(mark);
|
876 |
-
|
877 |
-
|
878 |
-
var firstRow = table.getElementsByTagName('TR')[1];
|
879 |
-
if(firstRow) {
|
880 |
-
var firstCol = (firstRow.childNodes[1]?firstRow.childNodes[1]:firstRow.childNodes[0]);
|
881 |
-
if(firstCol.colSpan>1) {
|
882 |
-
firstRow.parentNode.removeChild(firstRow);
|
883 |
-
}
|
884 |
-
}
|
885 |
-
var cnt = table.getElementsByTagName('TR').length;
|
886 |
-
if(cnt%2) tr.className="alternate";
|
887 |
-
|
888 |
-
table.appendChild(tr);
|
889 |
-
}
|
890 |
-
|
891 |
-
function sm_loadPages() {
|
892 |
-
for(var i=0; i<pages.length; i++) {
|
893 |
-
sm_addPage(pages[i].url,pages[i].priority,pages[i].changeFreq,pages[i].lastChanged);
|
894 |
-
}
|
895 |
-
}
|
896 |
-
|
897 |
//]]>
|
898 |
</script>
|
|
|
899 |
<table width="100%" cellpadding="3" cellspacing="3" id="sm_pageTable">
|
900 |
<tr>
|
901 |
<th scope="col"><?php _e('URL to the page','sitemap'); ?></th>
|
@@ -1006,20 +899,18 @@ class GoogleSitemapGeneratorUI {
|
|
1006 |
<?php _e('Include homepage', 'sitemap') ?>
|
1007 |
</label>
|
1008 |
</li>
|
1009 |
-
<!--
|
1010 |
-
<li>
|
1011 |
-
<label for="sm_in_posts_sub">
|
1012 |
-
<input type="checkbox" id="sm_in_posts_sub" name="sm_in_posts_sub" <?php echo ($this->sg->GetOption("sm_in_posts_sub")==true?"checked=\"checked\"":"") ?> />
|
1013 |
-
<?php _e('Include all pages of multi-page posts (<!--nextpage-->)', 'sitemap') ?>
|
1014 |
-
</label>
|
1015 |
-
</li>
|
1016 |
-
-->
|
1017 |
<li>
|
1018 |
<label for="sm_in_posts">
|
1019 |
<input type="checkbox" id="sm_in_posts" name="sm_in_posts" <?php echo ($this->sg->GetOption("in_posts")==true?"checked=\"checked\"":"") ?> />
|
1020 |
<?php _e('Include posts', 'sitemap') ?>
|
1021 |
</label>
|
1022 |
</li>
|
|
|
|
|
|
|
|
|
|
|
|
|
1023 |
<li>
|
1024 |
<label for="sm_in_pages">
|
1025 |
<input type="checkbox" id="sm_in_pages" name="sm_in_pages" <?php echo ($this->sg->GetOption("in_pages")==true?"checked=\"checked\"":"") ?> />
|
1 |
<?php
|
2 |
/*
|
3 |
|
4 |
+
$Id: sitemap-ui.php 48028 2008-05-27 14:29:50Z arnee $
|
5 |
|
6 |
*/
|
7 |
|
64 |
if($next) {
|
65 |
$diff = (time()-$next)*-1;
|
66 |
if($diff <= 0) {
|
67 |
+
$diffMsg = __('Your sitemap is being refreshed at the moment. Depending on your blog size this might take some time!','sitemap');
|
68 |
} else {
|
69 |
$diffMsg = str_replace("%s",$diff,__('Your sitemap will be refreshed in %s seconds. Depending on your blog size this might take some time!','sitemap'));
|
70 |
}
|
768 |
<script type="text/javascript">
|
769 |
//<![CDATA[
|
770 |
<?php
|
771 |
+
$freqVals = "'" . implode("','",array_keys($this->sg->_freqNames)). "'";
|
772 |
+
$freqNames = "'" . implode("','",array_values($this->sg->_freqNames)). "'";
|
|
|
|
|
|
|
773 |
?>
|
774 |
|
775 |
var changeFreqVals = new Array( <?php echo $freqVals; ?> );
|
786 |
}
|
787 |
}
|
788 |
?> ];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
789 |
//]]>
|
790 |
</script>
|
791 |
+
<script type="text/javascript" src="<?php echo $this->sg->GetPluginUrl(); ?>/img/sitemap.js"></script>
|
792 |
<table width="100%" cellpadding="3" cellspacing="3" id="sm_pageTable">
|
793 |
<tr>
|
794 |
<th scope="col"><?php _e('URL to the page','sitemap'); ?></th>
|
899 |
<?php _e('Include homepage', 'sitemap') ?>
|
900 |
</label>
|
901 |
</li>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
902 |
<li>
|
903 |
<label for="sm_in_posts">
|
904 |
<input type="checkbox" id="sm_in_posts" name="sm_in_posts" <?php echo ($this->sg->GetOption("in_posts")==true?"checked=\"checked\"":"") ?> />
|
905 |
<?php _e('Include posts', 'sitemap') ?>
|
906 |
</label>
|
907 |
</li>
|
908 |
+
<li>
|
909 |
+
<label for="sm_in_posts_sub">
|
910 |
+
<input type="checkbox" id="sm_in_posts_sub" name="sm_in_posts_sub" <?php echo ($this->sg->GetOption("in_posts_sub")==true?"checked=\"checked\"":"") ?> />
|
911 |
+
<?php _e('Include following pages of multi-page posts (<!--nextpage-->)', 'sitemap') ?>
|
912 |
+
</label>
|
913 |
+
</li>
|
914 |
<li>
|
915 |
<label for="sm_in_pages">
|
916 |
<input type="checkbox" id="sm_in_pages" name="sm_in_pages" <?php echo ($this->sg->GetOption("in_pages")==true?"checked=\"checked\"":"") ?> />
|
sitemap.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
$Id: sitemap.php
|
5 |
|
6 |
Google XML Sitemaps Generator for WordPress
|
7 |
==============================================================================
|
@@ -25,7 +25,7 @@
|
|
25 |
Plugin Name: Google XML Sitemaps
|
26 |
Plugin URI: http://www.arnebrachhold.de/redir/sitemap-home/
|
27 |
Description: This plugin will generate a sitemaps.org compatible sitemap of your WordPress blog which is supported by Ask.com, Google, MSN Search and YAHOO. <a href="options-general.php?page=sitemap.php">Configuration Page</a>
|
28 |
-
Version: 3.1
|
29 |
Author: Arne Brachhold
|
30 |
Author URI: http://www.arnebrachhold.de/
|
31 |
*/
|
@@ -79,7 +79,7 @@ class GoogleSitemapGeneratorLoader {
|
|
79 |
}
|
80 |
|
81 |
function CallCheckForManualBuild() {
|
82 |
-
|
83 |
$gs = GoogleSitemapGenerator::GetInstance();
|
84 |
$gs->CheckForManualBuild();
|
85 |
}
|
@@ -87,6 +87,16 @@ class GoogleSitemapGeneratorLoader {
|
|
87 |
|
88 |
function LoadPlugin() {
|
89 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
if(!class_exists("GoogleSitemapGenerator")) {
|
91 |
|
92 |
$path = trailingslashit(dirname(__FILE__));
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
$Id: sitemap.php 48032 2008-05-27 14:32:06Z arnee $
|
5 |
|
6 |
Google XML Sitemaps Generator for WordPress
|
7 |
==============================================================================
|
25 |
Plugin Name: Google XML Sitemaps
|
26 |
Plugin URI: http://www.arnebrachhold.de/redir/sitemap-home/
|
27 |
Description: This plugin will generate a sitemaps.org compatible sitemap of your WordPress blog which is supported by Ask.com, Google, MSN Search and YAHOO. <a href="options-general.php?page=sitemap.php">Configuration Page</a>
|
28 |
+
Version: 3.1.0.1
|
29 |
Author: Arne Brachhold
|
30 |
Author URI: http://www.arnebrachhold.de/
|
31 |
*/
|
79 |
}
|
80 |
|
81 |
function CallCheckForManualBuild() {
|
82 |
+
if(GoogleSitemapGeneratorLoader::LoadPlugin()) {
|
83 |
$gs = GoogleSitemapGenerator::GetInstance();
|
84 |
$gs->CheckForManualBuild();
|
85 |
}
|
87 |
|
88 |
function LoadPlugin() {
|
89 |
|
90 |
+
$mem = abs(intval(@ini_get('memory_limit')));
|
91 |
+
if($mem && $mem < 32) {
|
92 |
+
@ini_set('memory_limit', '32M');
|
93 |
+
}
|
94 |
+
|
95 |
+
$time = abs(intval(@ini_get("max_execution_tim")));
|
96 |
+
if($time != 0 && $time < 120) {
|
97 |
+
@set_time_limit(120);
|
98 |
+
}
|
99 |
+
|
100 |
if(!class_exists("GoogleSitemapGenerator")) {
|
101 |
|
102 |
$path = trailingslashit(dirname(__FILE__));
|