git-svn-id: svn://svn.lighttpd.net/xcache/trunk@1101 c26eb9a1-5813-0410-bd6c-c2e55f420ca73.0
parent
fda586ae01
commit
6eecd740e5
@ -0,0 +1,65 @@
|
||||
#!/usr/bin/awk -f
|
||||
BEGIN {
|
||||
print "<?php";
|
||||
print "";
|
||||
print "$strings += array(";
|
||||
}
|
||||
|
||||
function flushOut() {
|
||||
if (section) {
|
||||
if (section == "msgstr") {
|
||||
if (msgid == "") {
|
||||
}
|
||||
else {
|
||||
print "\t\""msgid"\"";
|
||||
print "\t=> \""msgstr"\",";
|
||||
}
|
||||
}
|
||||
else {
|
||||
print "unexpected section " section;
|
||||
exit 1;
|
||||
}
|
||||
section = null;
|
||||
}
|
||||
}
|
||||
|
||||
/^msgid ".*"$/ {
|
||||
$0 = gensub(/^msgid "(.*)"$/, "\\1", $0);
|
||||
|
||||
section = "msgid";
|
||||
msgid = $0;
|
||||
next;
|
||||
}
|
||||
/^msgstr ".*"$/ {
|
||||
$0 = gensub(/^msgstr "(.*)"$/, "\\1", $0);
|
||||
|
||||
section = "msgstr";
|
||||
msgstr = $0;
|
||||
next;
|
||||
}
|
||||
/^".*"$/ {
|
||||
$0 = gensub(/^"(.*)"$/, "\\1", $0);
|
||||
if (section == "msgid") {
|
||||
msgid = msgid $0;
|
||||
}
|
||||
else {
|
||||
msgstr = msgstr $0;
|
||||
}
|
||||
next;
|
||||
}
|
||||
/^$/ {
|
||||
flushOut();
|
||||
next;
|
||||
}
|
||||
/^#/ {
|
||||
next;
|
||||
}
|
||||
/./ {
|
||||
print "error", $0;
|
||||
exit 1;
|
||||
}
|
||||
END {
|
||||
flushOut();
|
||||
print ");";
|
||||
print "";
|
||||
}
|
@ -0,0 +1,273 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-08-01 15:32+0800\n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: edit.tpl.php:8
|
||||
#, php-format
|
||||
msgid "Editing Variable %s"
|
||||
msgstr ""
|
||||
|
||||
#: edit.tpl.php:13
|
||||
#, php-format
|
||||
msgid "Set %s in config to enable"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:187 index.php:213
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:261
|
||||
msgid "Summary"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:262
|
||||
msgid "List PHP"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:263
|
||||
msgid "List Var Data"
|
||||
msgstr ""
|
||||
|
||||
#: listentries.tpl.php:11
|
||||
msgid "php Cached"
|
||||
msgstr "PHP Cached"
|
||||
|
||||
#: listentries.tpl.php:11
|
||||
msgid "var Cached"
|
||||
msgstr "Variable Cached"
|
||||
|
||||
#: listentries.tpl.php:15
|
||||
msgid "php Deleted"
|
||||
msgstr "PHP Deleted"
|
||||
|
||||
#: listentries.tpl.php:15
|
||||
msgid "var Deleted"
|
||||
msgstr "Variable Deleted"
|
||||
|
||||
#: sub/entrylist.tpl.php:14
|
||||
msgid "entry.id"
|
||||
msgstr "Id|"
|
||||
|
||||
#: sub/entrylist.tpl.php:19
|
||||
msgid "entry.remove"
|
||||
msgstr "Remove|"
|
||||
|
||||
#: sub/entrylist.tpl.php:24
|
||||
msgid "entry.name"
|
||||
msgstr "Entry name|The entry name or filename"
|
||||
|
||||
#: sub/entrylist.tpl.php:25
|
||||
msgid "entry.hits"
|
||||
msgstr "Hits|Hit times of this entry (loaded from this cache)"
|
||||
|
||||
#: sub/entrylist.tpl.php:26
|
||||
msgid "entry.size"
|
||||
msgstr "Size|Size in bytes of this entry in the cache"
|
||||
|
||||
#: sub/entrylist.tpl.php:31
|
||||
msgid "entry.refcount"
|
||||
msgstr "Refs|Reference count of this entry is holded by a php request"
|
||||
|
||||
#: sub/entrylist.tpl.php:32
|
||||
msgid "entry.phprefcount"
|
||||
msgstr "Shares|Count of entry sharing this php data"
|
||||
|
||||
#: sub/entrylist.tpl.php:33
|
||||
msgid "entry.class_cnt"
|
||||
msgstr "Cls.|Count of classes"
|
||||
|
||||
#: sub/entrylist.tpl.php:34
|
||||
msgid "entry.function_cnt"
|
||||
msgstr "Funcs|Count of functions"
|
||||
|
||||
#: sub/entrylist.tpl.php:35
|
||||
msgid "entry.file_size"
|
||||
msgstr "Src Size|Size of the source file"
|
||||
|
||||
#: sub/entrylist.tpl.php:36
|
||||
msgid "entry.file_mtime"
|
||||
msgstr "Modified|Last modified time of the source file"
|
||||
|
||||
#: sub/entrylist.tpl.php:39
|
||||
msgid "entry.file_device"
|
||||
msgstr "dev|device number of the source file"
|
||||
|
||||
#: sub/entrylist.tpl.php:40
|
||||
msgid "entry.file_inode"
|
||||
msgstr "ino|inode number of the source file"
|
||||
|
||||
#: sub/entrylist.tpl.php:44
|
||||
msgid "entry.hash"
|
||||
msgstr "Hash|Hash value of this entry"
|
||||
|
||||
#: sub/entrylist.tpl.php:45
|
||||
msgid "entry.atime"
|
||||
msgstr "Access|Last time when this entry is accessed"
|
||||
|
||||
#: sub/entrylist.tpl.php:46
|
||||
msgid "entry.ctime"
|
||||
msgstr "Create|The time when this entry is stored"
|
||||
|
||||
#: sub/entrylist.tpl.php:51
|
||||
msgid "entry.delete"
|
||||
msgstr "Delete|The time when this entry is deleted"
|
||||
|
||||
#: sub/entrylist.tpl.php:144
|
||||
msgid "Remove Selected"
|
||||
msgstr ""
|
||||
|
||||
#: sub/moduleinfo.tpl.php:1
|
||||
msgid "Module Info"
|
||||
msgstr ""
|
||||
|
||||
#: sub/summary.tpl.php:3
|
||||
msgid "Caches"
|
||||
msgstr "Caches"
|
||||
|
||||
#: sub/summary.tpl.php:6
|
||||
msgid "cache.cache"
|
||||
msgstr "Cache|"
|
||||
|
||||
#: sub/summary.tpl.php:7
|
||||
msgid "cache.slots"
|
||||
msgstr "Slots|Number of hash slots. the setting from your php.ini"
|
||||
|
||||
#: sub/summary.tpl.php:8
|
||||
msgid "cache.size"
|
||||
msgstr "Size|Cache Size, Size of the cache (or cache chunk), in bytes"
|
||||
|
||||
#: sub/summary.tpl.php:9
|
||||
msgid "cache.avail"
|
||||
msgstr "Avail|Available Memory, free memory in bytes of this cache"
|
||||
|
||||
#: sub/summary.tpl.php:10
|
||||
msgid "cache.blocksgraph"
|
||||
msgstr ""
|
||||
"Percent Graph|Shows how much memory available in percent, and memory blocks "
|
||||
"status in graph"
|
||||
|
||||
#: sub/summary.tpl.php:11
|
||||
msgid "cache.operations"
|
||||
msgstr "Operations|Press the clear button to clean this cache"
|
||||
|
||||
#: sub/summary.tpl.php:12
|
||||
msgid "cache.status"
|
||||
msgstr ""
|
||||
"Status|Compiling flag, \"Compiling\" if the cache is busy compiling php "
|
||||
"script. \"Disabled\" if cache is disabled"
|
||||
|
||||
#: sub/summary.tpl.php:13
|
||||
msgid "cache.hits"
|
||||
msgstr "Hits|Cache Hits, hit=a var/php is loaded from this cache"
|
||||
|
||||
#: sub/summary.tpl.php:14
|
||||
msgid "cache.hits_graph"
|
||||
msgstr "Hits*24H|Hits graph of last 24 hours"
|
||||
|
||||
#: sub/summary.tpl.php:15
|
||||
msgid "cache.hits_avg_h"
|
||||
msgstr "Hits/H|Average Hits per Hour. Only last 24 hours is logged"
|
||||
|
||||
#: sub/summary.tpl.php:16
|
||||
msgid "cache.hits_avg_s"
|
||||
msgstr "Hits/S|Average Hits per Second. Only last 5 seconds is logged"
|
||||
|
||||
#: sub/summary.tpl.php:17
|
||||
msgid "cache.updates"
|
||||
msgstr "Updates|Cache Updates"
|
||||
|
||||
#: sub/summary.tpl.php:18
|
||||
msgid "cache.skips"
|
||||
msgstr ""
|
||||
"Skips|Skips. Skip=updates are needed but skipped for some reason. e.g.: "
|
||||
"other process/thread is busy compiling on this cache"
|
||||
|
||||
#: sub/summary.tpl.php:19
|
||||
msgid "cache.ooms"
|
||||
msgstr ""
|
||||
"OOMs|Out Of Memory, how many times a new item should be stored but there "
|
||||
"isn't enough memory in the cache, think of increasing the xcache.size or "
|
||||
"xcache.var_size"
|
||||
|
||||
#: sub/summary.tpl.php:20
|
||||
msgid "cache.errors"
|
||||
msgstr ""
|
||||
"Errs|Compiler errors, how many times your script is compiled but failed. You "
|
||||
"should really check what is happening if you see this value increase. (See "
|
||||
"Help for more information)"
|
||||
|
||||
#: sub/summary.tpl.php:21
|
||||
msgid "cache.readonly_protected"
|
||||
msgstr ""
|
||||
"Protected|Whether readonly_protection is available and enable on this cache "
|
||||
"(See help for more information)"
|
||||
|
||||
#: sub/summary.tpl.php:22
|
||||
msgid "cache.cached"
|
||||
msgstr "Cached|Number of entries stored in this cache"
|
||||
|
||||
#: sub/summary.tpl.php:23
|
||||
msgid "cache.deleted"
|
||||
msgstr ""
|
||||
"Deleted|Number of entries is pending in delete list (expired but referenced)"
|
||||
|
||||
#: sub/summary.tpl.php:24
|
||||
msgid "cache.gc_timer"
|
||||
msgstr "GC|Seconds count down of Garbage Collection"
|
||||
|
||||
#: sub/summary.tpl.php:30
|
||||
msgid "Clear"
|
||||
msgstr ""
|
||||
|
||||
#: sub/summary.tpl.php:31
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: sub/summary.tpl.php:32
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: sub/summary.tpl.php:33
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: sub/summary.tpl.php:34
|
||||
msgid "Compiling"
|
||||
msgstr ""
|
||||
|
||||
#: sub/summary.tpl.php:35
|
||||
msgid "Normal"
|
||||
msgstr ""
|
||||
|
||||
#: sub/summary.tpl.php:36 sub/testcoredump.tpl.php:3
|
||||
msgid "Sure?"
|
||||
msgstr ""
|
||||
|
||||
#: sub/summary.tpl.php:132
|
||||
msgid "Legends:"
|
||||
msgstr ""
|
||||
|
||||
#: sub/summary.tpl.php:134
|
||||
msgid "% Free"
|
||||
msgstr ""
|
||||
|
||||
#: sub/summary.tpl.php:134
|
||||
msgid "% Used"
|
||||
msgstr ""
|
||||
|
||||
#: sub/summary.tpl.php:136
|
||||
msgid "Free Blocks"
|
||||
msgstr ""
|
||||
|
||||
#: sub/summary.tpl.php:136
|
||||
msgid "Used Blocks"
|
||||
msgstr ""
|
||||
|
||||
#: sub/summary.tpl.php:138
|
||||
msgid "Hits"
|
||||
msgstr ""
|
@ -0,0 +1,267 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-08-01 15:32+0800\n"
|
||||
"Language: zh\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: edit.tpl.php:8
|
||||
#, php-format
|
||||
msgid "Editing Variable %s"
|
||||
msgstr "ๆญฃๅจ็ผ่พๅ้ %s"
|
||||
|
||||
#: edit.tpl.php:13
|
||||
#, php-format
|
||||
msgid "Set %s in config to enable"
|
||||
msgstr "่ฏทๅจ้
็ฝฎๆไปถไธญ่ฎพ็ฝฎ %s ๅฏ็จๆฌๅ่ฝ"
|
||||
|
||||
#: index.php:187 index.php:213
|
||||
msgid "Total"
|
||||
msgstr "ๆปๅ
ฑ"
|
||||
|
||||
#: index.php:261
|
||||
msgid "Summary"
|
||||
msgstr "ๆ่ฆไฟกๆฏ"
|
||||
|
||||
#: index.php:262
|
||||
msgid "List PHP"
|
||||
msgstr "ๅๅบPHP"
|
||||
|
||||
#: index.php:263
|
||||
msgid "List Var Data"
|
||||
msgstr "ๅๅ้ๆฐๆฎ"
|
||||
|
||||
#: listentries.tpl.php:11
|
||||
msgid "php Cached"
|
||||
msgstr "็ผๅญ็ PHP ่ๆฌ"
|
||||
|
||||
#: listentries.tpl.php:11
|
||||
msgid "var Cached"
|
||||
msgstr "็ผๅญ็ๅ้"
|
||||
|
||||
#: listentries.tpl.php:15
|
||||
msgid "php Deleted"
|
||||
msgstr "ๅพ
ๅ PHP ็ผๅญ"
|
||||
|
||||
#: listentries.tpl.php:15
|
||||
msgid "var Deleted"
|
||||
msgstr "ๅพ
ๅ ๅ้"
|
||||
|
||||
#: sub/entrylist.tpl.php:14
|
||||
msgid "entry.id"
|
||||
msgstr "Id|"
|
||||
|
||||
#: sub/entrylist.tpl.php:19
|
||||
msgid "entry.remove"
|
||||
msgstr "ๅ ้ค|"
|
||||
|
||||
#: sub/entrylist.tpl.php:24
|
||||
msgid "entry.name"
|
||||
msgstr "้กน็ฎๅ/ๆไปถๅ|้กน็ฎๅๆ่
ๆไปถๅ"
|
||||
|
||||
#: sub/entrylist.tpl.php:25
|
||||
msgid "entry.hits"
|
||||
msgstr "ๅฝไธญ|่ฏฅ้กน็ฎ่ขซๅฝไธญ็ๆฌกๆฐ (ไปๅ
ฑไบซๅ
ๅญๅบ่ฝฝๅ
ฅ)"
|
||||
|
||||
#: sub/entrylist.tpl.php:26
|
||||
msgid "entry.size"
|
||||
msgstr "ๅคงๅฐ|้กน็ฎๅจๅ
ฑไบซๅ
ๅญ้ๅ ็จๅญ่ๆฐ"
|
||||
|
||||
#: sub/entrylist.tpl.php:31
|
||||
msgid "entry.refcount"
|
||||
msgstr "ๅผ็จๆฐ|้กน็ฎไพ็ถ่ขซๅ
ถไป่ฟ็จๅ ๆฎ็ๅผ็จๆฌกๆฐ"
|
||||
|
||||
#: sub/entrylist.tpl.php:32
|
||||
msgid "entry.phprefcount"
|
||||
msgstr "ๅ
ฑไบซๆฐ|ไธๆฌ้กน็ฎ็ธๅ PHP ไปฃ็ ็ไธชๆฐ"
|
||||
|
||||
#: sub/entrylist.tpl.php:33
|
||||
msgid "entry.class_cnt"
|
||||
msgstr "็ฑป|็ฑปไธชๆฐ"
|
||||
|
||||
#: sub/entrylist.tpl.php:34
|
||||
msgid "entry.function_cnt"
|
||||
msgstr "ๅฝๆฐ|ๅฝๆฐไธชๆฐ"
|
||||
|
||||
#: sub/entrylist.tpl.php:35
|
||||
msgid "entry.file_size"
|
||||
msgstr "ๆบๅคงๅฐ|ๆบๆไปถๅคงๅฐ"
|
||||
|
||||
#: sub/entrylist.tpl.php:36
|
||||
msgid "entry.file_mtime"
|
||||
msgstr "ไฟฎๆน|ๆบๆไปถๆๅไฟฎๆนๆถ้ด"
|
||||
|
||||
#: sub/entrylist.tpl.php:39
|
||||
msgid "entry.file_device"
|
||||
msgstr "dev|ๆบๆไปถๆๅจ่ฎพๅคID"
|
||||
|
||||
#: sub/entrylist.tpl.php:40
|
||||
msgid "entry.file_inode"
|
||||
msgstr "ino|ๆบๆไปถ็ inode"
|
||||
|
||||
#: sub/entrylist.tpl.php:44
|
||||
msgid "entry.hash"
|
||||
msgstr "ๅๅธ|่ฏฅ้กน็ฎ็ๅๅธๅผ"
|
||||
|
||||
#: sub/entrylist.tpl.php:45
|
||||
msgid "entry.atime"
|
||||
msgstr "่ฎฟ้ฎ|ๆๅ่ฎฟ้ฎ่ฏฅ้กน็ฎ็ๆถ้ด"
|
||||
|
||||
#: sub/entrylist.tpl.php:46
|
||||
msgid "entry.ctime"
|
||||
msgstr "ๅๅปบ|่ฏฅ้กน็ฎ่ขซๅๅปบไบๅ
ฑไบซๅ
็ๆถ้ด"
|
||||
|
||||
#: sub/entrylist.tpl.php:51
|
||||
msgid "entry.delete"
|
||||
msgstr "ๅ ้ค|่ฏฅ้กน็ฎ่ขซๅณๅฎๅ ้ค็ๆถ้ด"
|
||||
|
||||
#: sub/entrylist.tpl.php:144
|
||||
msgid "Remove Selected"
|
||||
msgstr "ๅ ้คๆ้"
|
||||
|
||||
#: sub/moduleinfo.tpl.php:1
|
||||
msgid "Module Info"
|
||||
msgstr "ๆจกๅไฟกๆฏ"
|
||||
|
||||
#: sub/summary.tpl.php:3
|
||||
msgid "Caches"
|
||||
msgstr "็ผๅญๅบ"
|
||||
|
||||
#: sub/summary.tpl.php:6
|
||||
msgid "cache.cache"
|
||||
msgstr "็ผๅญ|"
|
||||
|
||||
#: sub/summary.tpl.php:7
|
||||
msgid "cache.slots"
|
||||
msgstr "ๆงฝ|Hash ๆงฝไธชๆฐ, ๅฏนๅบ php.ini ้็่ฎพ็ฝฎ"
|
||||
|
||||
#: sub/summary.tpl.php:8
|
||||
msgid "cache.size"
|
||||
msgstr "ๅคงๅฐ|ๅ
ฑไบซๅ
ๅญๅบๅคงๅฐ, ๅไฝ: ๅญ่"
|
||||
|
||||
#: sub/summary.tpl.php:9
|
||||
msgid "cache.avail"
|
||||
msgstr "ๅฉไฝ|ๅฏ็จๅ
ๅญ, ๅฏนๅบๅ
ฑไบซๅ
ๅญๅบ็ๅฉไฝๅ
ๅญๅญ่ๆฐ"
|
||||
|
||||
#: sub/summary.tpl.php:10
|
||||
msgid "cache.blocksgraph"
|
||||
msgstr "็พๅๆฏๅพ|ๆก็ถๆพ็คบๅฏ็จๅ
ๅญ็ๆฏไพ, ไปฅๅๆพ็คบๅ้
ๅ็ถๆ"
|
||||
|
||||
#: sub/summary.tpl.php:11
|
||||
msgid "cache.operations"
|
||||
msgstr "ๆไฝ|็นๅปๆ้ฎๆธ
้คๅฏนๅบๅ
ฑไบซๅ
ๅญๅบ็ๆฐๆฎ"
|
||||
|
||||
#: sub/summary.tpl.php:12
|
||||
msgid "cache.status"
|
||||
msgstr ""
|
||||
"็ถๆ|็ถๆๆ ่ฎฐ. ๅฝๅ
ฑไบซๅ
ๅญๅบๆญฃๅจ็ผ่ฏ PHP ่ๆฌๆถๆ ่ฎฐไธบ \"็ผ่ฏไธญ\". ๅฝๅ
ฑไบซๅ
ๅญๅบ"
|
||||
"ๆๅไฝฟ็จๆถๆ ่ฎฐไธบ \"็ฆ็จ\""
|
||||
|
||||
#: sub/summary.tpl.php:13
|
||||
msgid "cache.hits"
|
||||
msgstr "ๅฝไธญ|ๅ
ฑไบซๅ
ๅญๅฝไธญๆฌกๆฐ, ๅฝไธญ=ไป่ฏฅๅ
ฑไบซๅ
ๅญ่ฝฝๅ
ฅ PHP ๆ่
ๅ้"
|
||||
|
||||
#: sub/summary.tpl.php:14
|
||||
msgid "cache.hits_graph"
|
||||
msgstr "24H ๅๅธ|24 ๅฐๆถๅฝไธญๅๅธๅพ. ๅพ่กจ็ฐๆฏๆๅ 24 ๅฐๆถ็ๅฝไธญๆฌกๆฐ"
|
||||
|
||||
#: sub/summary.tpl.php:15
|
||||
msgid "cache.hits_avg_h"
|
||||
msgstr "ๅฝไธญ/H|ๆฏๅฐๆถๅฝไธญๆฌกๆฐ. ๅช็ป่ฎกๆๅ 24 ๅฐๆถ"
|
||||
|
||||
#: sub/summary.tpl.php:16
|
||||
msgid "cache.hits_avg_s"
|
||||
msgstr "ๅฝไธญ/S|ๆฏ็งๅฝไธญๆฌกๆฐ. ๅช็ป่ฎกๆๅ 5 ็ง"
|
||||
|
||||
#: sub/summary.tpl.php:17
|
||||
msgid "cache.updates"
|
||||
msgstr "ๆดๆฐ|ๅ
ฑไบซๅ
ๅญๆดๆฐๆฌกๆฐ"
|
||||
|
||||
#: sub/summary.tpl.php:18
|
||||
msgid "cache.skips"
|
||||
msgstr ""
|
||||
"้ปๅก|่ทณ่ฟๆดๆฐๆฌกๆฐ, ่ทณ่ฟ=XCache ่ชๅจๅคๆญ้ปๅก็ๅ
ฑไบซๅ
ๅญๅบ่ชๅจ่ทณ่ฟ้ปๅก็ญๅพ
, ็ดๆฅ"
|
||||
"ไฝฟ็จ้ๅ
ฑไบซๅ
ๅญๆนๅผ็ปง็ปญๅค็่ฏทๆฑ"
|
||||
|
||||
#: sub/summary.tpl.php:19
|
||||
msgid "cache.ooms"
|
||||
msgstr ""
|
||||
"ๅ
ๅญไธ่ถณ|ๅ
ๅญไธ่ถณๆฌกๆฐ, ๆพ็คบ้่ฆๅญๅจๆฐๆฐๆฎไฝๆฏๅ
ฑไบซๅ
ๅญๅบๅ
ๅญไธ่ถณ็ๆฌกๆฐ. ๅฆๆๅบ"
|
||||
"็ฐๅคช้ข็น่ฏท่่ๅ ๅคง้
็ฝฎไธญ็ xcache.size ๆ่
xcache.var_size"
|
||||
|
||||
#: sub/summary.tpl.php:20
|
||||
msgid "cache.errors"
|
||||
msgstr ""
|
||||
"้่ฏฏ|็ผ่ฏ้่ฏฏ, ๆพ็คบๆจ็่ๆฌ่ขซ็ผ่ฏๆถๅบ้็ๆฌกๆฐ. ๅฆๆๆจๅ็ฐ่ฟไธชๆฐๅญไธๆญๅข้ฟ, ๆจ"
|
||||
"ๅบ่ฏฅๆฃๆฅไปไน่ๆฌไบง็้่ฏฏ. ๅ่ ๅธฎๅฉ ่ทๅๆดๅคไฟกๆฏ"
|
||||
|
||||
#: sub/summary.tpl.php:21
|
||||
msgid "cache.readonly_protected"
|
||||
msgstr ""
|
||||
"ไฟๆค|ๆพ็คบ่ฏฅ Cache ๆฏๅฆๆฏๆๅนถๅฏ็จ readonly_protection. ๅ่ ๅธฎๅฉ ่ทๅๆดๅคไฟกๆฏ"
|
||||
|
||||
#: sub/summary.tpl.php:22
|
||||
msgid "cache.cached"
|
||||
msgstr "็ผๅญ|ๅ
ฑไบซๅ
ๅญไบ่ฏฅๅ
ฑไบซๅ
ๅญๅบ็้กน็ฎๆกๆฐ"
|
||||
|
||||
#: sub/summary.tpl.php:23
|
||||
msgid "cache.deleted"
|
||||
msgstr "ๅพ
ๅ |ๅ
ฑไบซๅ
ๅญๅบๅ
ๅฐ่ฆๅ ้ค็้กน็ฎ (ๅทฒ็ปๅ ้คไฝๆฏ่ฟ่ขซๆไบ่ฟ็จๅ ็จ)"
|
||||
|
||||
#: sub/summary.tpl.php:24
|
||||
msgid "cache.gc_timer"
|
||||
msgstr "GC|ๅๅพๅๆถ็ๅ่ฎกๆถ"
|
||||
|
||||
#: sub/summary.tpl.php:30
|
||||
msgid "Clear"
|
||||
msgstr "ๆธ
้ค"
|
||||
|
||||
#: sub/summary.tpl.php:31
|
||||
msgid "Disabled"
|
||||
msgstr "็ฆ็จ"
|
||||
|
||||
#: sub/summary.tpl.php:32
|
||||
msgid "Disable"
|
||||
msgstr "็ฆ็จ"
|
||||
|
||||
#: sub/summary.tpl.php:33
|
||||
msgid "Enable"
|
||||
msgstr "ๅฏ็จ"
|
||||
|
||||
#: sub/summary.tpl.php:34
|
||||
msgid "Compiling"
|
||||
msgstr "็ผ่ฏไธญ"
|
||||
|
||||
#: sub/summary.tpl.php:35
|
||||
msgid "Normal"
|
||||
msgstr "ๆญฃๅธธ"
|
||||
|
||||
#: sub/summary.tpl.php:36 sub/testcoredump.tpl.php:3
|
||||
msgid "Sure?"
|
||||
msgstr "็กฎ่ฎค?"
|
||||
|
||||
#: sub/summary.tpl.php:132
|
||||
msgid "Legends:"
|
||||
msgstr "ๅพไพ:"
|
||||
|
||||
#: sub/summary.tpl.php:134
|
||||
msgid "% Free"
|
||||
msgstr "% ๅฉไฝ"
|
||||
|
||||
#: sub/summary.tpl.php:134
|
||||
msgid "% Used"
|
||||
msgstr "% ๅทฒ็จ"
|
||||
|
||||
#: sub/summary.tpl.php:136
|
||||
msgid "Free Blocks"
|
||||
msgstr "ๆช็จๅ"
|
||||
|
||||
#: sub/summary.tpl.php:136
|
||||
msgid "Used Blocks"
|
||||
msgstr "ๅทฒ็จๅ"
|
||||
|
||||
#: sub/summary.tpl.php:138
|
||||
msgid "Hits"
|
||||
msgstr "ๅฝไธญ"
|
@ -0,0 +1,266 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-08-01 15:32+0800\n"
|
||||
"Language: zh_TW\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: edit.tpl.php:8
|
||||
#, php-format
|
||||
msgid "Editing Variable %s"
|
||||
msgstr "ๆญฃๅจ็ผ่พๅ้ %s"
|
||||
|
||||
#: edit.tpl.php:13
|
||||
#, php-format
|
||||
msgid "Set %s in config to enable"
|
||||
msgstr "่ซๅจ้
็ฝฎๆไปถไธญ่จญ็ฝฎ %s ๅ็จๆฌๅ่ฝ"
|
||||
|
||||
#: index.php:187 index.php:213
|
||||
msgid "Total"
|
||||
msgstr "ๆปๅ
ฑ"
|
||||
|
||||
#: index.php:261
|
||||
msgid "Summary"
|
||||
msgstr "็ฐก่ฆ่จๆฏ"
|
||||
|
||||
#: index.php:262
|
||||
msgid "List PHP"
|
||||
msgstr "ๅๅบPHP"
|
||||
|
||||
#: index.php:263
|
||||
msgid "List Var Data"
|
||||
msgstr "ๅ่ฎๆธ่ณๆ"
|
||||
|
||||
#: listentries.tpl.php:11
|
||||
msgid "php Cached"
|
||||
msgstr "ๅฟซๅ็ PHP ๆไปค"
|
||||
|
||||
#: listentries.tpl.php:11
|
||||
msgid "var Cached"
|
||||
msgstr "ๅฟซๅ็่ฎๆธ"
|
||||
|
||||
#: listentries.tpl.php:15
|
||||
msgid "php Deleted"
|
||||
msgstr "ๅพ
ๅช PHP ๆไปค"
|
||||
|
||||
#: listentries.tpl.php:15
|
||||
msgid "var Deleted"
|
||||
msgstr "ๅพ
ๅช่ฎๆธ"
|
||||
|
||||
#: sub/entrylist.tpl.php:14
|
||||
msgid "entry.id"
|
||||
msgstr "Id|"
|
||||
|
||||
#: sub/entrylist.tpl.php:19
|
||||
msgid "entry.remove"
|
||||
msgstr "็งป้ค|"
|
||||
|
||||
#: sub/entrylist.tpl.php:24
|
||||
msgid "entry.name"
|
||||
msgstr "้
็ฎๅ็จฑ/ๆชๆกๅ็จฑ|้
็ฎๅ็จฑๆ่
ๆชๆกๅ็จฑ"
|
||||
|
||||
#: sub/entrylist.tpl.php:25
|
||||
msgid "entry.hits"
|
||||
msgstr "ๅฝไธญ|่ฉฒ้
็ฎ่ขซๅฝไธญ็ๆฌกๆธ (ๅพๅ
ฑไบซ่จๆถ้ซๅ่ผๅ
ฅ)"
|
||||
|
||||
#: sub/entrylist.tpl.php:26
|
||||
msgid "entry.size"
|
||||
msgstr "ๅคงๅฐ|้
็ฎๅจๅ
ฑไบซ่จๆถ้ซ่ฃกไฝ็จไฝๅ
ๆธ"
|
||||
|
||||
#: sub/entrylist.tpl.php:31
|
||||
msgid "entry.refcount"
|
||||
msgstr "ๅผ็จๆธ|้
็ฎไพ็ถ่ขซๅ
ถไป็จๅบไฝ็จ็ๅผ็จๆฌกๆธ"
|
||||
|
||||
#: sub/entrylist.tpl.php:32
|
||||
msgid "entry.phprefcount"
|
||||
msgstr "ๅ
ฑไบซ|่ๆฌ้
็ฎ็ธๅ PHP ๅ
งๅฎน็ไธชๆธ"
|
||||
|
||||
#: sub/entrylist.tpl.php:33
|
||||
msgid "entry.class_cnt"
|
||||
msgstr "็ฑป|็ฑปไธชๆฐ"
|
||||
|
||||
#: sub/entrylist.tpl.php:34
|
||||
msgid "entry.function_cnt"
|
||||
msgstr "ๅฝๆฐ|ๅฝๆฐไธชๆฐ"
|
||||
|
||||
#: sub/entrylist.tpl.php:35
|
||||
msgid "entry.file_size"
|
||||
msgstr "ๆบๅคงๅฐ|ๅๅงๆชๆกๅคงๅฐ"
|
||||
|
||||
#: sub/entrylist.tpl.php:36
|
||||
msgid "entry.file_mtime"
|
||||
msgstr "ไฟฎๆน|ๅๅงๆชๆกๆๅพไฟฎๆนๆ้"
|
||||
|
||||
#: sub/entrylist.tpl.php:39
|
||||
msgid "entry.file_device"
|
||||
msgstr "dev|ๅๅงๆชๆกๆๅจ่จญๅID"
|
||||
|
||||
#: sub/entrylist.tpl.php:40
|
||||
msgid "entry.file_inode"
|
||||
msgstr "ino|ๅๅงๆชๆก็inode"
|
||||
|
||||
#: sub/entrylist.tpl.php:44
|
||||
msgid "entry.hash"
|
||||
msgstr "Hash|Hash"
|
||||
|
||||
#: sub/entrylist.tpl.php:45
|
||||
msgid "entry.atime"
|
||||
msgstr "ๅญๅ|ๆๅพๅญๅ่ฉฒ้
็ฎ็ๆ้"
|
||||
|
||||
#: sub/entrylist.tpl.php:46
|
||||
msgid "entry.ctime"
|
||||
msgstr "ๅปบ็ซ|่ฉฒ้
็ฎ่ขซๅปบ็ซๆผๅ
ฑไบซๅ
ง็ๆ้"
|
||||
|
||||
#: sub/entrylist.tpl.php:51
|
||||
msgid "entry.delete"
|
||||
msgstr "็งป้ค|่ฉฒ้
็ฎ่ขซ็งป้คๆผๅ
ฑไบซๅ
ง็ๆ้"
|
||||
|
||||
#: sub/entrylist.tpl.php:144
|
||||
msgid "Remove Selected"
|
||||
msgstr "็งป้คๆ้"
|
||||
|
||||
#: sub/moduleinfo.tpl.php:1
|
||||
msgid "Module Info"
|
||||
msgstr "็ตๅ
่จๆฏ"
|
||||
|
||||
#: sub/summary.tpl.php:3
|
||||
msgid "Caches"
|
||||
msgstr "ๅฟซๅ"
|
||||
|
||||
#: sub/summary.tpl.php:6
|
||||
msgid "cache.cache"
|
||||
msgstr "ๅฟซๅ|"
|
||||
|
||||
#: sub/summary.tpl.php:7
|
||||
msgid "cache.slots"
|
||||
msgstr "ๆงฝ|Hash ๆงฝๅๆธ๏ผๅฐๆ php.ini ่ฃก็่จญ็ฝฎ"
|
||||
|
||||
#: sub/summary.tpl.php:8
|
||||
msgid "cache.size"
|
||||
msgstr "ๅคงๅฐ|ๅ
ฑไบซ่จๆถ้ซๅๅคงๅฐ๏ผๅฎไฝ๏ผไฝๅ
"
|
||||
|
||||
#: sub/summary.tpl.php:9
|
||||
msgid "cache.avail"
|
||||
msgstr "ๅฉ้ค|ๅฏ็จ่จๆถ้ซ๏ผๅฐๆๅ
ฑไบซ่จๆถ้ซๅ็ๅฉ้ค่จๆถ้ซไฝๅ
ๆธ"
|
||||
|
||||
#: sub/summary.tpl.php:10
|
||||
msgid "cache.blocksgraph"
|
||||
msgstr "็พๅๆฏๅพ|ๆข็้กฏ็คบๅฏ็จ่จๆถ้ซ็ๆฏไพ"
|
||||
|
||||
#: sub/summary.tpl.php:11
|
||||
msgid "cache.operations"
|
||||
msgstr "ๆไฝๆ้|้ปๆๆ้ๆธ
้คๅฐๆๅ
ฑไบซ่จๆถ้ซๅ็่ณๆ"
|
||||
|
||||
#: sub/summary.tpl.php:12
|
||||
msgid "cache.status"
|
||||
msgstr ""
|
||||
"็ๆ
|็ๆ
ๆจ่จ. ็ถๅ
ฑไบซๅ
งๅญๅๆญฃๅจ็ทจ่ญฏ PHP ่
ณๆฌๆๆจ่จ็บ \"็ทจ่ญฏไธญ\". ็ถๅ
ฑไบซๅ
งๅญๅ"
|
||||
"ๆซๅไฝฟ็จๆๆจ่จ็บ \"็ฆ็จ\""
|
||||
|
||||
#: sub/summary.tpl.php:13
|
||||
msgid "cache.hits"
|
||||
msgstr "ๅฝไธญ|ๅ
ฑไบซ่จๆถ้ซๅฝไธญๆฌกๆธ๏ผๅฝไธญ=ๅพ่ฉฒๅ
ฑไบซ่จๆถ้ซ่ผๅ
ฅ PHP ๆ่
่ฎๆธ"
|
||||
|
||||
#: sub/summary.tpl.php:14
|
||||
msgid "cache.hits_graph"
|
||||
msgstr "24H ๅๅธ|24 ๅฐๆถๅฝไธญๅๅธๅพ. ๅพ่กจ็ฐๆฏๆๅ 24 ๅฐๆถ็ๅฝไธญๆฌกๆฐ"
|
||||
|
||||
#: sub/summary.tpl.php:15
|
||||
msgid "cache.hits_avg_h"
|
||||
msgstr "ๅฝไธญ/H|ๆฏๅฐๆถๅฝไธญๆฌกๆฐ. ๅช็ป่ฎกๆๅ 24 ๅฐๆถ"
|
||||
|
||||
#: sub/summary.tpl.php:16
|
||||
msgid "cache.hits_avg_s"
|
||||
msgstr "ๅฝไธญ/S|ๆฏ็งๅฝไธญๆฌกๆฐ. ๅช็ป่ฎกๆๅ 5 ็ง"
|
||||
|
||||
#: sub/summary.tpl.php:17
|
||||
msgid "cache.updates"
|
||||
msgstr "ๆดๆฐ|ๅ
ฑไบซ่จๆถๆดๆฐ้ๆฌกๆธ"
|
||||
|
||||
#: sub/summary.tpl.php:18
|
||||
msgid "cache.skips"
|
||||
msgstr ""
|
||||
"่ทณ้|่ทณ้ๆดๆฐๆฌกๆธ๏ผ่ทณ้=XCache ่ชๅๅคๆท้ปๅก็ๅ
ฑไบซ่จๆถ้ซๅ่ชๅ่ทณ้้ปๅก็ญๅพ
๏ผ็ด"
|
||||
"ๆฅไฝฟ็จ้ๅ
ฑไบซ่จๆถ้ซๆนๅผ็นผ็บ่็่ซๆฑ"
|
||||
|
||||
#: sub/summary.tpl.php:19
|
||||
msgid "cache.ooms"
|
||||
msgstr ""
|
||||
"่จๆถ้ซไธ่ถณ|่จๆถ้ซไธ่ถณๆฌกๆธ๏ผ้กฏ็คบ้่ฆๅฒๅญๆฐ่ณๆไฝๆฏๅ
ฑไบซ่จๆถ้ซๅ่จๆถ้ซไธ่ถณ็ๆฌก"
|
||||
"ๆธ. ๅฆๆๅบ็พๅคช้ ป็น่ซ่ๆ
ฎๅ ๅคง้
็ฝฎไธญ็ xcache.size ๆ่
xcache.var_size"
|
||||
|
||||
#: sub/summary.tpl.php:20
|
||||
msgid "cache.errors"
|
||||
msgstr ""
|
||||
"้่ฏฏ|็ผ่ฏ้่ฏฏ, ๆพ็คบๆจ็่ๆฌ่ขซ็ผ่ฏๆถๅบ้็ๆฌกๆฐ. ๅฆๆๆจๅ็ฐ่ฟไธชๆฐๅญไธๆญๅข้ฟ, ๆจ"
|
||||
"ๅบ่ฏฅๆฃๆฅไปไน่ๆฌไบง็้่ฏฏ. ๅ่ ่ชชๆ"
|
||||
|
||||
#: sub/summary.tpl.php:21
|
||||
msgid "cache.readonly_protected"
|
||||
msgstr "Protected|้กฏ็คบ่ฉฒ Cache ๆฏๅฆๆฏๆดไธฆๅ็จ readonly_protection. ๅ่ ่ชชๆ"
|
||||
|
||||
#: sub/summary.tpl.php:22
|
||||
msgid "cache.cached"
|
||||
msgstr "ๅฟซๅ|ๅ
ฑไบซ่จๆถ้ซๆผ่ฉฒๅ
ฑไบซ่จๆถ้ซๅ็้
็ฎๅๆธ"
|
||||
|
||||
#: sub/summary.tpl.php:23
|
||||
msgid "cache.deleted"
|
||||
msgstr "ๅพ
ๅช|ๅ
ฑไบซ่จๆถ้ซๅๅ
งๅฐ่ฆๅช้ค็้
็ฎ (ๅทฒ็ถๅช้คไฝๆฏ้่ขซๆไบ็จๅบไฝ็จ)"
|
||||
|
||||
#: sub/summary.tpl.php:24
|
||||
msgid "cache.gc_timer"
|
||||
msgstr "GC|ๅๅพๅๆถ็ๅๆธ่จๆ"
|
||||
|
||||
#: sub/summary.tpl.php:30
|
||||
msgid "Clear"
|
||||
msgstr "ๆธ
้ค"
|
||||
|
||||
#: sub/summary.tpl.php:31
|
||||
msgid "Disabled"
|
||||
msgstr "็ฆ็จ"
|
||||
|
||||
#: sub/summary.tpl.php:32
|
||||
msgid "Disable"
|
||||
msgstr "็ฆ็จ"
|
||||
|
||||
#: sub/summary.tpl.php:33
|
||||
msgid "Enable"
|
||||
msgstr "ๅ็จ"
|
||||
|
||||
#: sub/summary.tpl.php:34
|
||||
msgid "Compiling"
|
||||
msgstr "็ทจ่ญฏไธญ"
|
||||
|
||||
#: sub/summary.tpl.php:35
|
||||
msgid "Normal"
|
||||
msgstr "ๆญฃๅธธ"
|
||||
|
||||
#: sub/summary.tpl.php:36 sub/testcoredump.tpl.php:3
|
||||
msgid "Sure?"
|
||||
msgstr "็ขบ่ช?"
|
||||
|
||||
#: sub/summary.tpl.php:132
|
||||
msgid "Legends:"
|
||||
msgstr "ๅพไพ:"
|
||||
|
||||
#: sub/summary.tpl.php:134
|
||||
msgid "% Free"
|
||||
msgstr "% ๅฉไฝ"
|
||||
|
||||
#: sub/summary.tpl.php:134
|
||||
msgid "% Used"
|
||||
msgstr "% ๅทฒ็จ"
|
||||
|
||||
#: sub/summary.tpl.php:136
|
||||
msgid "Free Blocks"
|
||||
msgstr "ๆช็จๅ"
|
||||
|
||||
#: sub/summary.tpl.php:136
|
||||
msgid "Used Blocks"
|
||||
msgstr "ๅทฒ็จๅ"
|
||||
|
||||
#: sub/summary.tpl.php:138
|
||||
msgid "Hits"
|
||||
msgstr "ๅฝไธญ"
|
@ -0,0 +1,36 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-08-01 14:47+0800\n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: common.php:47
|
||||
msgid "Document"
|
||||
msgstr ""
|
||||
|
||||
#: common.php:48
|
||||
msgid "INI Reference"
|
||||
msgstr ""
|
||||
|
||||
#: common.php:49
|
||||
msgid "Get Support"
|
||||
msgstr ""
|
||||
|
||||
#: common.php:50
|
||||
msgid "Discusson"
|
||||
msgstr ""
|
||||
|
||||
#: common.php:267
|
||||
msgid "Cacher"
|
||||
msgstr ""
|
||||
|
||||
#: common.php:270
|
||||
msgid "Coverager"
|
||||
msgstr ""
|
||||
|
||||
#: common.php:273
|
||||
msgid "Diagnosis"
|
||||
msgstr ""
|
@ -0,0 +1,36 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-08-01 14:47+0800\n"
|
||||
"Language: zh\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: common.php:47
|
||||
msgid "Document"
|
||||
msgstr "ๅธฎๅฉๆๆกฃ"
|
||||
|
||||
#: common.php:48
|
||||
msgid "INI Reference"
|
||||
msgstr "INI ๅ่"
|
||||
|
||||
#: common.php:49
|
||||
msgid "Get Support"
|
||||
msgstr "่ทๅๆฏๆ"
|
||||
|
||||
#: common.php:50
|
||||
msgid "Discusson"
|
||||
msgstr "่ฎจ่ฎบ"
|
||||
|
||||
#: common.php:267
|
||||
msgid "Cacher"
|
||||
msgstr "็ผๅญๅจ"
|
||||
|
||||
#: common.php:270
|
||||
msgid "Coverager"
|
||||
msgstr "ไปฃ็ ่ฆ็ๆฅ็ๅจ"
|
||||
|
||||
#: common.php:273
|
||||
msgid "Diagnosis"
|
||||
msgstr "่ฏๆญ"
|
@ -0,0 +1,36 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-08-01 14:47+0800\n"
|
||||
"Language: zh_TW\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: common.php:47
|
||||
msgid "Document"
|
||||
msgstr "ๅนซๅฉๆๆช"
|
||||
|
||||
#: common.php:48
|
||||
msgid "INI Reference"
|
||||
msgstr "INI ๅ่"
|
||||
|
||||
#: common.php:49
|
||||
msgid "Get Support"
|
||||
msgstr "็ฒๅๆฏๆ"
|
||||
|
||||
#: common.php:50
|
||||
msgid "Discusson"
|
||||
msgstr "่จ่ซ"
|
||||
|
||||
#: common.php:267
|
||||
msgid "Cacher"
|
||||
msgstr "ๅฟซๅๅจ"
|
||||
|
||||
#: common.php:270
|
||||
msgid "Coverager"
|
||||
msgstr "ไปฃ็ ่ฆ็ๆฅ็ๅจ"
|
||||
|
||||
#: common.php:273
|
||||
msgid "Diagnosis"
|
||||
msgstr "่จบๆท"
|
@ -1,5 +1,3 @@
|
||||
<?php
|
||||
|
||||
$GLOBALS['show_todo_strings'] = false;
|
||||
|
||||
?>
|
||||
|
@ -0,0 +1,36 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-08-01 14:47+0800\n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: coverager.tpl.php:37
|
||||
msgid "Directory"
|
||||
msgstr ""
|
||||
|
||||
#: coverager.tpl.php:38 coverager.tpl.php:100
|
||||
msgid "Percent"
|
||||
msgstr ""
|
||||
|
||||
#: coverager.tpl.php:39 coverager.tpl.php:101
|
||||
msgid "Hits"
|
||||
msgstr ""
|
||||
|
||||
#: coverager.tpl.php:40 coverager.tpl.php:102
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
|
||||
#: coverager.tpl.php:41
|
||||
msgid "TODO"
|
||||
msgstr ""
|
||||
|
||||
#: coverager.tpl.php:99
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
#: coverager.tpl.php:151
|
||||
msgid "root"
|
||||
msgstr ""
|
@ -0,0 +1,36 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-08-01 14:47+0800\n"
|
||||
"Language: zh\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: coverager.tpl.php:37
|
||||
msgid "Directory"
|
||||
msgstr "็ฎๅฝ"
|
||||
|
||||
#: coverager.tpl.php:38 coverager.tpl.php:100
|
||||
msgid "Percent"
|
||||
msgstr "่ฆ็็"
|
||||
|
||||
#: coverager.tpl.php:39 coverager.tpl.php:101
|
||||
msgid "Hits"
|
||||
msgstr "ๅฝไธญ"
|
||||
|
||||
#: coverager.tpl.php:40 coverager.tpl.php:102
|
||||
msgid "Lines"
|
||||
msgstr "่กๆฐ"
|
||||
|
||||
#: coverager.tpl.php:41
|
||||
msgid "TODO"
|
||||
msgstr "้ฒ็ฝฎๆไปถ"
|
||||
|
||||
#: coverager.tpl.php:99
|
||||
msgid "File"
|
||||
msgstr "ๆไปถ"
|
||||
|
||||
#: coverager.tpl.php:151
|
||||
msgid "root"
|
||||
msgstr "ๅผๅง"
|
@ -0,0 +1,318 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-08-01 14:47+0800\n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: diagnosis.tpl.php:4
|
||||
msgid "Diagnosis Result"
|
||||
msgstr ""
|
||||
|
||||
#: diagnosis.tpl.php:8
|
||||
msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: diagnosis.tpl.php:11
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
#: diagnosis.tpl.php:14
|
||||
msgid "Result"
|
||||
msgstr ""
|
||||
|
||||
#: diagnosis.tpl.php:17
|
||||
msgid "Result/Suggestion"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:77
|
||||
msgid "XCache extension"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:81
|
||||
#, php-format
|
||||
msgid "Add extension=xcache.so (or xcache.dll) in %s"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:84
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please put a php.ini in %s and add extension=xcache.so (or xcache.dll) in it"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:87
|
||||
msgid "Cannot detect ini location"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:89
|
||||
msgid " (See above)"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:90
|
||||
msgid "Not loaded"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:93
|
||||
msgid "Loaded"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:124
|
||||
msgid "Enabling PHP Cacher"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:131
|
||||
msgid "Not enabled: Website is not accelerated by XCache"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:132
|
||||
msgid "Set xcache.size to non-zero, set xcache.cacher = On"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:138
|
||||
msgid "No php script cached: Website is not accelerated by XCache"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:139
|
||||
msgid "Set xcache.cacher = On"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:143 index.php:194 index.php:302 index.php:322 index.php:356
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:146
|
||||
msgid "PHP Compile Time Error"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:156
|
||||
msgid "Error happened when compiling at least one of your PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:157
|
||||
msgid ""
|
||||
"This usually means there is syntax error in your PHP code. Enable PHP "
|
||||
"error_log to see what parser error is it, fix your code"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:161
|
||||
msgid "No error happened"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:164
|
||||
msgid "Busy Compiling"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:174
|
||||
msgid "Cache marked as busy for compiling"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:175
|
||||
msgid ""
|
||||
"It's ok if this status don't stay for long. Otherwise, it could be a sign of "
|
||||
"PHP crash/coredump, report to XCache devs"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:179 index.php:274 index.php:345
|
||||
msgid "Idle"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:182
|
||||
msgid "Enabling VAR Cacher"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:189
|
||||
msgid "Not enabled: code that use xcache var cacher fall back to other backend"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:190
|
||||
msgid "Set xcache.var_size to non-zero"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:196
|
||||
msgid "Using VAR Cacher"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:200
|
||||
msgid "No variable data cached"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:201
|
||||
msgid ""
|
||||
"Var Cacher won't work simply by enabling it. PHP code must call XCache APIs "
|
||||
"like xcache_set() to use it as cache backend. 3rd party web apps may come "
|
||||
"with XCache support, config it to use XCache as cachign backend"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:206
|
||||
msgid "Cache in use"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:211
|
||||
msgid "Cache Size"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:218
|
||||
msgid "Out of memory happened when trying to write to cache"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:219
|
||||
msgid "Increase xcache.size and/or xcache.var_size"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:223
|
||||
msgid "Enough"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:226
|
||||
msgid "Slots"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:243
|
||||
msgid "Slots value too big"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:244
|
||||
#, php-format
|
||||
msgid ""
|
||||
"A very small value is set to %s value and leave %s value is too big.\n"
|
||||
"Decrease %s if small cache is really what you want"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:252
|
||||
msgid "Slots value too small"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:253
|
||||
#, php-format
|
||||
msgid "So many item are cached. Increase %s to a more proper value"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:257 index.php:387
|
||||
msgid "Looks good"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:260
|
||||
msgid "Cache Status"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:267
|
||||
msgid "At least one of the caches is disabled. "
|
||||
msgstr ""
|
||||
|
||||
#: index.php:268
|
||||
msgid ""
|
||||
"It was disabled by PHP crash/coredump handler or You disabled it manually"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:268
|
||||
msgid "You disabled it manually"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:269
|
||||
msgid "Enable the cache."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:270
|
||||
msgid "If it was caused by PHP crash/coredump, report to XCache devs"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:278
|
||||
msgid "Coredump Directory"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:284
|
||||
msgid "Not enabled"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:285
|
||||
msgid ""
|
||||
"Enable coredump to know your PHP crash. It can also be enabled in fpm other "
|
||||
"than in XCache"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:296
|
||||
msgid "Core files found:\n"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:297
|
||||
msgid ""
|
||||
"Disable XCache PHP Cacher (xcache.size=0), remove the core file(s). If core "
|
||||
"file appears again, report call stack backtrace in the core to XCache devs"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:303
|
||||
#, php-format
|
||||
msgid "You can see core files if PHP crash in %s if PHP crash"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:308
|
||||
msgid "Readonly Protection"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:315
|
||||
msgid "Set to enabled but not available"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:316
|
||||
msgid "Use xcache.mmap_path other than /dev/zero"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:322 index.php:361
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:323
|
||||
msgid ""
|
||||
"Enable readonly_protection == --performance & ++stability. Disable "
|
||||
"readonly_protection == ++performance & --stability"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:328
|
||||
msgid "XCache modules"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:339
|
||||
msgid ""
|
||||
"Acceptable. Module(s) listed above are built into XCache but not for "
|
||||
"production server\n"
|
||||
"Leave it as is if you're feeling good.\n"
|
||||
"Re-configure XCache with the above module(s) disabled if you're strict with "
|
||||
"server security."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:349
|
||||
msgid "XCache test setting"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:357
|
||||
msgid "xcache.test is for testing only, not for server. set it to off"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:364
|
||||
msgid "PHP Version"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:383
|
||||
msgid "The version of PHP you're using is known to be unstable: "
|
||||
msgstr ""
|
||||
|
||||
#: index.php:384
|
||||
msgid "Upgrade to new version of PHP"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:390
|
||||
msgid "Extension Compatibility"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:395
|
||||
msgid "Zend Optimizer loaded"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:396
|
||||
msgid ""
|
||||
"Optimizer feature of 'Zend Optimizer' is disabled by XCache due to "
|
||||
"compatibility reason; the Loader of it is still available, encoded files are "
|
||||
"still supported"
|
||||
msgstr ""
|
@ -0,0 +1,318 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-08-01 14:47+0800\n"
|
||||
"Language: zh\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: diagnosis.tpl.php:4
|
||||
msgid "Diagnosis Result"
|
||||
msgstr ""
|
||||
|
||||
#: diagnosis.tpl.php:8
|
||||
msgid "Item"
|
||||
msgstr ""
|
||||
|
||||
#: diagnosis.tpl.php:11
|
||||
msgid "Level"
|
||||
msgstr ""
|
||||
|
||||
#: diagnosis.tpl.php:14
|
||||
msgid "Result"
|
||||
msgstr ""
|
||||
|
||||
#: diagnosis.tpl.php:17
|
||||
msgid "Result/Suggestion"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:77
|
||||
msgid "XCache extension"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:81
|
||||
#, php-format
|
||||
msgid "Add extension=xcache.so (or xcache.dll) in %s"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:84
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please put a php.ini in %s and add extension=xcache.so (or xcache.dll) in it"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:87
|
||||
msgid "Cannot detect ini location"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:89
|
||||
msgid " (See above)"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:90
|
||||
msgid "Not loaded"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:93
|
||||
msgid "Loaded"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:124
|
||||
msgid "Enabling PHP Cacher"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:131
|
||||
msgid "Not enabled: Website is not accelerated by XCache"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:132
|
||||
msgid "Set xcache.size to non-zero, set xcache.cacher = On"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:138
|
||||
msgid "No php script cached: Website is not accelerated by XCache"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:139
|
||||
msgid "Set xcache.cacher = On"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:143 index.php:194 index.php:302 index.php:322 index.php:356
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:146
|
||||
msgid "PHP Compile Time Error"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:156
|
||||
msgid "Error happened when compiling at least one of your PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:157
|
||||
msgid ""
|
||||
"This usually means there is syntax error in your PHP code. Enable PHP "
|
||||
"error_log to see what parser error is it, fix your code"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:161
|
||||
msgid "No error happened"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:164
|
||||
msgid "Busy Compiling"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:174
|
||||
msgid "Cache marked as busy for compiling"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:175
|
||||
msgid ""
|
||||
"It's ok if this status don't stay for long. Otherwise, it could be a sign of "
|
||||
"PHP crash/coredump, report to XCache devs"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:179 index.php:274 index.php:345
|
||||
msgid "Idle"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:182
|
||||
msgid "Enabling VAR Cacher"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:189
|
||||
msgid "Not enabled: code that use xcache var cacher fall back to other backend"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:190
|
||||
msgid "Set xcache.var_size to non-zero"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:196
|
||||
msgid "Using VAR Cacher"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:200
|
||||
msgid "No variable data cached"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:201
|
||||
msgid ""
|
||||
"Var Cacher won't work simply by enabling it. PHP code must call XCache APIs "
|
||||
"like xcache_set() to use it as cache backend. 3rd party web apps may come "
|
||||
"with XCache support, config it to use XCache as cachign backend"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:206
|
||||
msgid "Cache in use"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:211
|
||||
msgid "Cache Size"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:218
|
||||
msgid "Out of memory happened when trying to write to cache"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:219
|
||||
msgid "Increase xcache.size and/or xcache.var_size"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:223
|
||||
msgid "Enough"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:226
|
||||
msgid "Slots"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:243
|
||||
msgid "Slots value too big"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:244
|
||||
#, php-format
|
||||
msgid ""
|
||||
"A very small value is set to %s value and leave %s value is too big.\n"
|
||||
"Decrease %s if small cache is really what you want"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:252
|
||||
msgid "Slots value too small"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:253
|
||||
#, php-format
|
||||
msgid "So many item are cached. Increase %s to a more proper value"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:257 index.php:387
|
||||
msgid "Looks good"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:260
|
||||
msgid "Cache Status"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:267
|
||||
msgid "At least one of the caches is disabled. "
|
||||
msgstr ""
|
||||
|
||||
#: index.php:268
|
||||
msgid ""
|
||||
"It was disabled by PHP crash/coredump handler or You disabled it manually"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:268
|
||||
msgid "You disabled it manually"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:269
|
||||
msgid "Enable the cache."
|
||||
msgstr ""
|
||||
|
||||
#: index.php:270
|
||||
msgid "If it was caused by PHP crash/coredump, report to XCache devs"
|
||||
msgstr ""
|
||||
|
||||
#: index.php:278
|
||||
msgid "Coredump Directory"
|
||||
|