Archived
Totally resorted the language files, added subscription strings
This commit is contained in:
@@ -16,7 +16,7 @@ class Serendipity_Import_Generic extends Serendipity_Import {
|
||||
'type' => 'input',
|
||||
'name' => 'url'),
|
||||
|
||||
array('text' => STATUS,
|
||||
array('text' => IMPORT_STATUS,
|
||||
'type' => 'list',
|
||||
'name' => 'type',
|
||||
'value' => 'publish',
|
||||
|
||||
@@ -25,7 +25,7 @@ class Serendipity_Import_LiveJournalXML extends Serendipity_Import {
|
||||
'value' => 0,
|
||||
'default' => $this->_getCategoryList()),
|
||||
|
||||
array('text' => STATUS,
|
||||
array('text' => IMPORT_STATUS,
|
||||
'type' => 'list',
|
||||
'name' => 'type',
|
||||
'value' => 'publish',
|
||||
|
||||
@@ -216,7 +216,7 @@ function serveAuthorPage($matches) {
|
||||
header('HTTP/1.0 404 Not found');
|
||||
header('Status: 404 Not found');
|
||||
} else {
|
||||
$serendipity['head_title'] = sprintf(ENTRIES_BY, $uInfo[0]['realname']);
|
||||
$serendipity['head_title'] = sprintf(ENTRIES_FOR, $uInfo[0]['realname']);
|
||||
$serendipity['head_subtitle'] = $serendipity['blogTitle'];
|
||||
}
|
||||
|
||||
|
||||
@@ -401,8 +401,8 @@
|
||||
'permission' => 'blogConfiguration'),
|
||||
|
||||
array('var' => 'enablePluginACL',
|
||||
'title' => PERMISSION_FORBIDDEN_ENABLE,
|
||||
'description' => PERMISSION_FORBIDDEN_ENABLE_DESC,
|
||||
'title' => USERGROUPS_FORBIDDEN_ENABLE,
|
||||
'description' => USERGROUPS_FORBIDDEN_ENABLE_DESC,
|
||||
'type' => 'bool',
|
||||
'default' => false,
|
||||
'permission' => 'blogConfiguration'),
|
||||
|
||||
+1036
-877
File diff suppressed because it is too large
Load Diff
+1020
-874
File diff suppressed because it is too large
Load Diff
+1219
-1073
File diff suppressed because it is too large
Load Diff
+1219
-1074
File diff suppressed because it is too large
Load Diff
+1030
-881
File diff suppressed because it is too large
Load Diff
+1019
-875
File diff suppressed because it is too large
Load Diff
+1049
-908
File diff suppressed because it is too large
Load Diff
+1031
-892
File diff suppressed because it is too large
Load Diff
+1015
-870
File diff suppressed because it is too large
Load Diff
+1020
-874
File diff suppressed because it is too large
Load Diff
+1018
-876
File diff suppressed because it is too large
Load Diff
+1016
-868
File diff suppressed because it is too large
Load Diff
+1017
-871
File diff suppressed because it is too large
Load Diff
+1019
-875
File diff suppressed because it is too large
Load Diff
+1018
-876
File diff suppressed because it is too large
Load Diff
+1016
-873
File diff suppressed because it is too large
Load Diff
+1017
-871
File diff suppressed because it is too large
Load Diff
+1030
-886
File diff suppressed because it is too large
Load Diff
+1052
-903
File diff suppressed because it is too large
Load Diff
+1022
-879
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
+1016
-871
File diff suppressed because it is too large
Load Diff
+1019
-874
File diff suppressed because it is too large
Load Diff
+1053
-826
File diff suppressed because it is too large
Load Diff
+1016
-870
File diff suppressed because it is too large
Load Diff
+1222
-1054
File diff suppressed because it is too large
Load Diff
+1053
-907
File diff suppressed because it is too large
Load Diff
+1019
-875
File diff suppressed because it is too large
Load Diff
+1052
-909
File diff suppressed because it is too large
Load Diff
+1019
-876
File diff suppressed because it is too large
Load Diff
+1021
-873
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,206 @@
|
||||
<?php
|
||||
|
||||
// this function is meant to be run from the command line
|
||||
// usage: php -f langsorter.php [arg1] [arg1]
|
||||
// arg1: language file to sort, for example de
|
||||
// arg2: folder, empty = language root folder, UTF-8 = subfolder
|
||||
// or single argument -all to batch process all existing language files
|
||||
// rearranges the language file the same as is in the english file
|
||||
// missing definitions are copied from the english file
|
||||
// removed definitions going to be removed
|
||||
// if some values are going to be changed, do it to the array in line 86
|
||||
// for example where the string has changed and to be back-set to english
|
||||
// or change definition name by changing the array key
|
||||
// remove this safety block
|
||||
exit;
|
||||
|
||||
function getDef($line) {
|
||||
$matches = array();
|
||||
$def = preg_match("#@define\\('([a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*)',#", $line, $matches);
|
||||
if (empty($matches[1])) {
|
||||
return false;
|
||||
}
|
||||
return $matches[1];
|
||||
}
|
||||
|
||||
function getVal($line) {
|
||||
$matches = array();
|
||||
$val = preg_match("#,(.+)\\);#", $line, $matches);
|
||||
if (empty($matches[1])) return false;
|
||||
return ' ' . trim($matches[1]);
|
||||
}
|
||||
|
||||
function checkIgnore($line) {
|
||||
if ( empty($line) ||
|
||||
substr($line, 0, 1) == '/' ||
|
||||
substr($line, 0, 1) == '#' ||
|
||||
substr($line, 0, 5) == '<?php' ||
|
||||
substr($line, 0, 2) == '?>' ) {
|
||||
return true;
|
||||
} else { return false; }
|
||||
}
|
||||
|
||||
function synclang($dir, $lancode) {
|
||||
global $refarray, $refstart;
|
||||
|
||||
// load target language
|
||||
$tarlang = file_get_contents( $dir . 'serendipity_lang_' . $lancode . '.inc.php');
|
||||
|
||||
if ($tarlang === false) {
|
||||
echo "Error: cannot load target file\n";
|
||||
exit;
|
||||
}
|
||||
|
||||
// explode file into lines
|
||||
$tararray = explode("\n", $tarlang);
|
||||
|
||||
// get first definition line
|
||||
foreach ($tararray as $key => $value) {
|
||||
if ( strpos($value, "@define('LANG_CHARSET',") !== false ) {
|
||||
$tarstart = $key;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
$tardefs = array();
|
||||
// split target definitions in key - value array
|
||||
echo "prepare target language file ...\r\n";
|
||||
for ($i = $tarstart; $i < count($tararray); $i++) {
|
||||
$line = $tararray[$i];
|
||||
if (checkIgnore($line)) continue;
|
||||
if (preg_match("#@define( +)\\(( +)'[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*'( +),#", $value) !== 0 ) {
|
||||
echo "line " . ($key + 1) . " contains additional spaces\r\n";
|
||||
exit;
|
||||
}
|
||||
$def = getDef($line, $i);
|
||||
if ($def === false) {
|
||||
echo "no definition found in line " . ($i + 1) . ": " . $line . "\r\n";
|
||||
exit;
|
||||
}
|
||||
$val = getVal($line, $i);
|
||||
if ($val === false) {
|
||||
echo "no value found in line " . ($i + 1) . ": " . $line . "\r\n";
|
||||
exit;
|
||||
}
|
||||
$tardefs[$def] = $val;
|
||||
}
|
||||
|
||||
// make changes, e.g. delete translations which have to be changed
|
||||
unset($tardefs['IFRAME_SAVE']);
|
||||
|
||||
echo "OK\r\n";
|
||||
$output = array_slice($tararray, 0, $tarstart);
|
||||
|
||||
echo "sort target language according to template file ...\r\n";
|
||||
for ($i = $refstart; $i < count($refarray); $i++) {
|
||||
$line = $refarray[$i];
|
||||
if (checkIgnore($line)) {
|
||||
$output[] = $line;
|
||||
continue;
|
||||
}
|
||||
$def = getDef($line, $i);
|
||||
if (array_key_exists($def, $tardefs)) {
|
||||
$output[] = "@define('{$def}',{$tardefs[$def]});";
|
||||
} else {
|
||||
echo "definition {$def} missing from target file, copying from template\r\n";
|
||||
$output[] = $line;
|
||||
}
|
||||
}
|
||||
echo "OK\r\n\r\n";
|
||||
|
||||
if (!file_exists($dir . 'processed')) mkdir($dir . 'processed', 0777, true);
|
||||
|
||||
file_put_contents( $dir . 'processed/serendipity_lang_' . $lancode . '.inc.php', implode("\n", $output));
|
||||
|
||||
}
|
||||
|
||||
// ===========================
|
||||
// program start
|
||||
// ===========================
|
||||
|
||||
if (!is_array($argv) || empty($argv[1])) {
|
||||
echo "This tool is intended to be called via commandline!\n";
|
||||
exit;
|
||||
}
|
||||
|
||||
// argument = language code of the file to be converted
|
||||
$lancode = $argv[1];
|
||||
|
||||
// load template language
|
||||
$reflang = file_get_contents('serendipity_lang_en.inc.php');
|
||||
|
||||
// explode file into lines
|
||||
$refarray = explode("\n", $reflang);
|
||||
|
||||
// get first definition line
|
||||
foreach ($refarray as $key => $value) {
|
||||
if ( strpos($value, "@define('LANG_CHARSET',") !== false ) {
|
||||
$refstart = $key;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// check syntax of reference files
|
||||
echo "syntax check of reference file ...\r\n";
|
||||
foreach ($refarray as $key => $value) {
|
||||
if (checkIgnore($value) ) continue;
|
||||
if (trim($value) == '') {
|
||||
echo "line " . ($key + 1) . " contains only space\r\n";
|
||||
exit;
|
||||
}
|
||||
if (preg_match("#@define( +)\\(( +)'[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*'( +),#", $value) !== 0 ) {
|
||||
echo "line " . ($key + 1) . " contains additional spaces\r\n";
|
||||
exit;
|
||||
}
|
||||
if (getDef($value) === false) {
|
||||
echo "no definition found in line " . ($key + 1) . ": " . $value . "\r\n";
|
||||
exit;
|
||||
}
|
||||
if (getVal($value) === false) {
|
||||
echo "no value found in line " . ($key + 1) . ": " . $value . "\r\n";
|
||||
exit;
|
||||
}
|
||||
}
|
||||
echo "OK\r\n\r\n";
|
||||
|
||||
// process single file
|
||||
if ($lancode != 'all') {
|
||||
if (empty($argv[2])) {
|
||||
synclang('', $lancode);
|
||||
} elseif ($argv[2] == 'UTF-8') {
|
||||
synclang('UTF-8/', $lancode);
|
||||
}
|
||||
} else {
|
||||
// batch processing all files in folder
|
||||
$d = @opendir('./');
|
||||
|
||||
if (!$d) {
|
||||
die('Failure');
|
||||
}
|
||||
|
||||
while(($file = readdir($d)) !== false) {
|
||||
$matches = array();
|
||||
preg_match('@serendipity_lang_([a-z]{2}[_]*[A-Z]*)\.inc\.php@', $file, $matches);
|
||||
echo "{$matches[1]}\r\n";
|
||||
if (empty($matches[1])) continue;
|
||||
if ($matches[1] == 'en') continue;
|
||||
echo "syncing language {$matches[1]}\r\n========================\r\n";
|
||||
synclang('', $matches[1]);
|
||||
}
|
||||
|
||||
$d = @opendir('UTF-8');
|
||||
|
||||
if (!$d) {
|
||||
die('Failure');
|
||||
}
|
||||
|
||||
while(($file = readdir($d)) !== false) {
|
||||
$matches = array();
|
||||
preg_match('@serendipity_lang_([a-z]{2}[_]*[A-Z]*)\.inc\.php@', $file, $matches);
|
||||
if (empty($matches[1])) continue;
|
||||
echo "syncing language {$matches[1]}\r\n========================\r\n";
|
||||
synclang('UTF-8/', $matches[1]);
|
||||
}
|
||||
}
|
||||
echo "DONE\r\n";
|
||||
?>
|
||||
+1036
-877
File diff suppressed because it is too large
Load Diff
+1020
-874
File diff suppressed because it is too large
Load Diff
+1221
-1075
File diff suppressed because it is too large
Load Diff
+1221
-1076
File diff suppressed because it is too large
Load Diff
+1030
-881
File diff suppressed because it is too large
Load Diff
+1018
-874
File diff suppressed because it is too large
Load Diff
+1049
-907
File diff suppressed because it is too large
Load Diff
+1031
-891
File diff suppressed because it is too large
Load Diff
+1015
-870
File diff suppressed because it is too large
Load Diff
+1020
-874
File diff suppressed because it is too large
Load Diff
+1018
-876
File diff suppressed because it is too large
Load Diff
+1016
-868
File diff suppressed because it is too large
Load Diff
+1017
-871
File diff suppressed because it is too large
Load Diff
+1019
-875
File diff suppressed because it is too large
Load Diff
+1018
-876
File diff suppressed because it is too large
Load Diff
+1016
-873
File diff suppressed because it is too large
Load Diff
+1017
-871
File diff suppressed because it is too large
Load Diff
+1030
-886
File diff suppressed because it is too large
Load Diff
+1052
-903
File diff suppressed because it is too large
Load Diff
+1022
-879
File diff suppressed because it is too large
Load Diff
+1024
-886
File diff suppressed because it is too large
Load Diff
+1016
-871
File diff suppressed because it is too large
Load Diff
+1019
-874
File diff suppressed because it is too large
Load Diff
+1053
-826
File diff suppressed because it is too large
Load Diff
+1016
-870
File diff suppressed because it is too large
Load Diff
+1223
-1055
File diff suppressed because it is too large
Load Diff
+1053
-907
File diff suppressed because it is too large
Load Diff
+1019
-875
File diff suppressed because it is too large
Load Diff
+1052
-909
File diff suppressed because it is too large
Load Diff
+1019
-876
File diff suppressed because it is too large
Load Diff
+1021
-873
File diff suppressed because it is too large
Load Diff
@@ -18,3 +18,7 @@
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_BLAHBLAH', 'В какъв ред референтните връзки да бъдат подредени (по подразбиране: брой на връзките)');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_DAY', 'Дата');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_FULLCOUNT', 'Брой на връзките');
|
||||
@define('TOP_REFERRER', 'Първенци в насочването');
|
||||
@define('SHOWS_TOP_SITES', 'Показване на страниците първенци в насочването към сайта ви');
|
||||
@define('TOP_EXITS', 'Първенци в излизането');
|
||||
@define('SHOWS_TOP_EXIT', 'Показване на страниците първенци в излизането от сайта ви');
|
||||
|
||||
@@ -13,3 +13,7 @@
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_BLAHBLAH', '以何种顺序排列来源链接(默认:链入次数)');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_DAY', '日期');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_FULLCOUNT', '链入次数');
|
||||
@define('TOP_REFERRER', '主要来源');
|
||||
@define('SHOWS_TOP_SITES', '显示连接到你的网站');
|
||||
@define('TOP_EXITS', '主要出源');
|
||||
@define('SHOWS_TOP_EXIT', '显示网站的主要出源');
|
||||
|
||||
@@ -20,4 +20,7 @@
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_BLAHBLAH', 'Podle čeho mají být odkazy řazené? (Standardně: Pořadí v textu)');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_DAY', 'Datum');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_FULLCOUNT', 'Pořadí v textu');
|
||||
|
||||
@define('TOP_REFERRER', 'Top odkazovače');
|
||||
@define('SHOWS_TOP_SITES', 'Nejčastější připojení k tomuto weblogu');
|
||||
@define('TOP_EXITS', 'Top výstupy');
|
||||
@define('SHOWS_TOP_EXIT', 'Nejčastější výstupy z tohoto weblogu');
|
||||
|
||||
@@ -20,4 +20,7 @@
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_BLAHBLAH', 'Podle čeho mají být odkazy řazené? (Standardně: Pořadí v textu)');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_DAY', 'Datum');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_FULLCOUNT', 'Pořadí v textu');
|
||||
|
||||
@define('TOP_REFERRER', 'Top odkazovače');
|
||||
@define('SHOWS_TOP_SITES', 'Nejčastější připojení k tomuto weblogu');
|
||||
@define('TOP_EXITS', 'Top výstupy');
|
||||
@define('SHOWS_TOP_EXIT', 'Nejčastější výstupy z tohoto weblogu');
|
||||
|
||||
@@ -19,4 +19,7 @@
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_BLAHBLAH', 'Hvad skal refererende links sorteres efter? (Standard: antal links)');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_DAY', 'Dato');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_FULLCOUNT', 'Antal links');
|
||||
|
||||
@define('TOP_REFERRER', 'Referencer');
|
||||
@define('SHOWS_TOP_SITES', 'Viser de sites som oftest linker til din blog');
|
||||
@define('TOP_EXITS', 'Udgangssider');
|
||||
@define('SHOWS_TOP_EXIT', 'Viser de udgangssider der er klikket flest gange på');
|
||||
|
||||
@@ -13,3 +13,7 @@
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_BLAHBLAH', 'Wonach sollen die eingehenden Links geordnet werden? (Standard: Häufigkeit)');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_DAY', 'Datum');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_FULLCOUNT', 'Häufigkeit');
|
||||
@define('TOP_REFERRER', 'Top Referrer');
|
||||
@define('SHOWS_TOP_SITES', 'Zeigt die Top-Seiten, die auf das Blog linken');
|
||||
@define('TOP_EXITS', 'Top Exits');
|
||||
@define('SHOWS_TOP_EXIT', 'Zeigt die Top-Exit-Links des Blogs');
|
||||
|
||||
@@ -19,4 +19,7 @@
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_BLAHBLAH', '¿Con respecto a qué clave deben ser ordenados los enlaces referenciados? (Por defecto: número de enlaces)');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_DAY', 'Fecha');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_FULLCOUNT', 'Número de enlaces');
|
||||
|
||||
@define('TOP_REFERRER', 'Sitios asociados');
|
||||
@define('SHOWS_TOP_SITES', 'Muestra los sitios que enlazan a tu weblog');
|
||||
@define('TOP_EXITS', 'Salidas');
|
||||
@define('SHOWS_TOP_EXIT', 'Muestra los enlaces de salida más frecuentes desde tu weblog');
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
@define('TOP_REFERRER', 'بیشترین مراجعه کننده ها');
|
||||
@define('SHOWS_TOP_SITES', 'نمایش برترین هایی که به وبلاگ شما لینک داده اند');
|
||||
@define('TOP_EXITS', 'بیشترین خروج ها');
|
||||
@define('SHOWS_TOP_EXIT', 'نمایش بیشترین خروج ها از طریق لینک');
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
@define('TOP_REFERRER', 'Huippuviittaajat');
|
||||
@define('SHOWS_TOP_SITES', 'Näyttää listan eniten viitanneista sivustoista.');
|
||||
@define('TOP_EXITS', 'Huippupoistumiset');
|
||||
@define('SHOWS_TOP_EXIT', 'Näyttää eniten viittaamasi sivustot, joille on poistuttu');
|
||||
@@ -26,4 +26,7 @@
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_BLAHBLAH', 'D\'après quel critère les liens doivent-ils être classés? Par défaut: le nombre de liens.');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_DAY', 'Par date');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_FULLCOUNT', 'Par nombre de liens');
|
||||
|
||||
@define('TOP_REFERRER', 'Top des liens entrants');
|
||||
@define('SHOWS_TOP_SITES', 'Montrer le top des sites qui affichent un lien vers votre blog');
|
||||
@define('TOP_EXITS', 'Top des liens sortants');
|
||||
@define('SHOWS_TOP_EXIT', 'Montrer le top des liens de sites qui sortent de votre blog');
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
@define('TOP_REFERRER', 'Legtöbbet ide hivatkozók');
|
||||
@define('SHOWS_TOP_SITES', 'Honlapok, melyek a blog-odra linkeltek');
|
||||
@define('TOP_EXITS', 'Kilépések toplistája');
|
||||
@define('SHOWS_TOP_EXIT', 'A blog elhagyása utáni leggyakoribb hivatkozásokat mutatja');
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
@define('TOP_REFERRER', 'Topp ávísarar');
|
||||
@define('SHOWS_TOP_SITES', 'Sýna toppsíður sem vísuðu á bloggin þín');
|
||||
@define('TOP_EXITS', 'Topp útgönguleiðir');
|
||||
@define('SHOWS_TOP_EXIT', 'Sýnir helstu útgönguleiðir frá bloggunum þínum');
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
@define('TOP_REFERRER', 'Top Referrers');
|
||||
@define('SHOWS_TOP_SITES', 'Mostra i maggiori siti che linkano il tuo blog');
|
||||
@define('TOP_EXITS', 'Top Exits');
|
||||
@define('SHOWS_TOP_EXIT', 'Mostra dove vanno i tuoi lettori quando escono dal blog');
|
||||
@@ -19,4 +19,7 @@
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_BLAHBLAH', 'どれを基準に参照リンクのしますか? (デフォルト: リンク数)');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_DAY', '日付');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_FULLCOUNT', 'リンクの数');
|
||||
|
||||
@define('TOP_REFERRER', 'トップリファラ一覧');
|
||||
@define('SHOWS_TOP_SITES', 'あなたのブログにリンクしたサイトのトップを表示します。');
|
||||
@define('TOP_EXITS', 'トップ退出一覧');
|
||||
@define('SHOWS_TOP_EXIT', 'あなたのブログから退出したリンクのトップを表示します。');
|
||||
|
||||
@@ -15,4 +15,7 @@
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_BLAHBLAH', '어떤 방식으로 참고 링크의 순서를 정하겠습니까? (기본값: 링크의 수)');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_DAY', '날짜');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_FULLCOUNT', '링크의 수');
|
||||
|
||||
@define('TOP_REFERRER', '상위 진입 링크');
|
||||
@define('SHOWS_TOP_SITES', '블로그로 가장 자주 링크를 건 사이트 보기');
|
||||
@define('TOP_EXITS', '상위 진출 링크');
|
||||
@define('SHOWS_TOP_EXIT', '블로그에서 가장 자주 타고 나간 링크 보기');
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
@define('BROWSE_ARCHIVES', 'Blader door het archief per maand');
|
||||
@define('TOP_REFERRER', 'Topverwijzers');
|
||||
@define('SHOWS_TOP_SITES', 'Toont de websites die uw weblog de meeste bezoekers bezorgen.');
|
||||
@define('TOP_EXITS', 'Top uitgaande hyperlinks');
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
@define('TOP_REFERRER', 'Referanser');
|
||||
@define('SHOWS_TOP_SITES', 'Viser de sitene som oftest linker til din blog');
|
||||
@define('TOP_EXITS', 'Exit-sider');
|
||||
@define('SHOWS_TOP_EXIT', 'Viser de exit-sider det har blitt klikket flest ganger på');
|
||||
@@ -19,4 +19,7 @@
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_BLAHBLAH', 'Według jakiego klucza odnosniki mają być sortowane? (Standardowo: ilość linków)');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_DAY', 'Data');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_FULLCOUNT', 'Ilość linków');
|
||||
|
||||
@define('TOP_REFERRER', 'Top Referrers');
|
||||
@define('SHOWS_TOP_SITES', 'Pokazuje strony, z których najczęściej łączono się z Twoim blogiem');
|
||||
@define('TOP_EXITS', 'Top Exits');
|
||||
@define('SHOWS_TOP_EXIT', 'Pokazuje ilość wychodzących z Twojego bloga kliknięć do innych stron');
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
@define('TOP_REFERRER', 'Maiores Referências');
|
||||
@define('SHOWS_TOP_SITES', 'Exibe os links de entrada mais utilizados para entrar no seu blog');
|
||||
@define('TOP_EXITS', 'Maiores Saídas');
|
||||
@define('SHOWS_TOP_EXIT', 'Exibe os links de saída mais requisitados de seu blog');
|
||||
@@ -25,4 +25,7 @@
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_BLAHBLAH', 'Qual critério a usar para classificar as ligações? Par omissão: o número de ligações.');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_DAY', 'Por data');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_FULLCOUNT', 'Por número de ligações');
|
||||
|
||||
@define('TOP_REFERRER', 'Referenciadores mais importantes');
|
||||
@define('SHOWS_TOP_SITES', 'Exibe os links de entrada mais utilizados para aceder no seu blogue');
|
||||
@define('TOP_EXITS', 'Saídas Maiores');
|
||||
@define('SHOWS_TOP_EXIT', 'Exibe os links de saída mais requisitados de seu blogue');
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
@define('TOP_REFERRER', 'Top Referinte');
|
||||
@define('SHOWS_TOP_SITES', 'Arata siturile care au legatura la blogul tau');
|
||||
@define('TOP_EXITS', 'Top Iesiri');
|
||||
@define('SHOWS_TOP_EXIT', 'Arata cele mai frecvente pagini din blogul tau de pe care pleaca vizitatorii');
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
@define('TOP_REFERRER', 'Откуда пришли');
|
||||
@define('SHOWS_TOP_SITES', 'Показывает сайты, которые ссылались на ваш блог чаще всего');
|
||||
@define('TOP_EXITS', 'Куда ушли');
|
||||
@define('SHOWS_TOP_EXIT', 'Показывает сайты, куда читатели вашего блога уходили чаще всего');
|
||||
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
@define('TOP_REFERRER', 'أكثر الزيارات من:');
|
||||
@define('SHOWS_TOP_SITES', 'أعرض افضل المواقع المرتبطة بمدونتك');
|
||||
@define('TOP_EXITS', 'اعلى المشاركات');
|
||||
@define('SHOWS_TOP_EXIT', 'أعرض اعلى الروابط يم الخروج من مدونتك إليه');
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
@define('TOP_REFERRER', 'Vanligaste hänvisare');
|
||||
@define('SHOWS_TOP_SITES', 'Vanligaste sajterna som länkat till din blogg');
|
||||
@define('TOP_EXITS', 'Vanligaste utgångar');
|
||||
@define('SHOWS_TOP_EXIT', 'Visar de vanligaste länkarna som använts ut från din blogg');
|
||||
@@ -19,4 +19,7 @@
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_BLAHBLAH', 'Podľa čoho majú byť odkazy zoaďované? (Prednastavené: Poradie v texte)');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_DAY', 'Dátum');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_FULLCOUNT', 'Poradie v texte');
|
||||
|
||||
@define('TOP_REFERRER', 'Top odkazujúce stránky');
|
||||
@define('SHOWS_TOP_SITES', 'Najčastejšie odkazujúce stránky na tento weblog');
|
||||
@define('TOP_EXITS', 'Top výstupy');
|
||||
@define('SHOWS_TOP_EXIT', 'Nejčastejšie stránky odkazované z tohto weblogu');
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
@define('TOP_REFERRER', 'மேற்குறிப்பாளர்கள்');
|
||||
@define('SHOWS_TOP_SITES', 'உங்கள் வலைகுறிப்பை அதிக எண்ணிக்கையில் சுட்டிக்காட்டும் இணையங்கள்');
|
||||
@define('TOP_EXITS', 'வேற்று இணையங்கள்');
|
||||
@define('SHOWS_TOP_EXIT', 'உங்கள் வலைகுறிப்பில் அன்பர்கள் அதிக எண்ணிக்கையில் பார்க்கும் வேற்று இணையங்கள்');
|
||||
@@ -25,3 +25,7 @@
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_BLAHBLAH', '要怎樣排序參照連結?(預設:連結數量)');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_DAY', '日期');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_FULLCOUNT', '連結數量');
|
||||
@define('TOP_REFERRER', '主要來源');
|
||||
@define('SHOWS_TOP_SITES', '顯示連結到您的網誌的網站');
|
||||
@define('TOP_EXITS', '主要出源');
|
||||
@define('SHOWS_TOP_EXIT', '顯示您的網誌的主要出源');
|
||||
|
||||
@@ -19,4 +19,7 @@
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_BLAHBLAH', 'İlgili web bağlantılarının sıralanmasında hangi anahtar ifade kullanılsın? (Öntanımlı: Web Bağlantılarının sayısı)');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_DAY', 'Tarih');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_FULLCOUNT', 'Web Bağlantılarının sayısı');
|
||||
|
||||
@define('TOP_REFERRER', 'En çok ziyaretçi gönderenler');
|
||||
@define('SHOWS_TOP_SITES', 'Siteye en çok bağlantı verenler');
|
||||
@define('TOP_EXITS', 'Siteden en çok çıkış yapanlar');
|
||||
@define('SHOWS_TOP_EXIT', 'Siteden en çok çıkış yapanların linkleri');
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
@define('TOP_REFERRER', '主要來源');
|
||||
@define('SHOWS_TOP_SITES', '顯示連結到您的日記的網站');
|
||||
@define('TOP_EXITS', '主要出源');
|
||||
@define('SHOWS_TOP_EXIT', '顯示您的日記的主要出源');
|
||||
@@ -13,3 +13,7 @@
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_BLAHBLAH', '以何种顺序排列来源链接(默认:链入次数)');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_DAY', '日期');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_FULLCOUNT', '链入次数');
|
||||
@define('TOP_REFERRER', '主要来源');
|
||||
@define('SHOWS_TOP_SITES', '显示连接到你的网站');
|
||||
@define('TOP_EXITS', '主要出源');
|
||||
@define('SHOWS_TOP_EXIT', '显示网站的主要出源');
|
||||
|
||||
@@ -18,3 +18,7 @@
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_BLAHBLAH', 'Â êàêúâ ðåä ðåôåðåíòíèòå âðúçêè äà áúäàò ïîäðåäåíè (ïî ïîäðàçáèðàíå: áðîé íà âðúçêèòå)');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_DAY', 'Äàòà');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_FULLCOUNT', 'Áðîé íà âðúçêèòå');
|
||||
@define('TOP_REFERRER', 'Първенци в насочването');
|
||||
@define('SHOWS_TOP_SITES', 'Показване на страниците първенци в насочването към сайта ви');
|
||||
@define('TOP_EXITS', 'Първенци в излизането');
|
||||
@define('SHOWS_TOP_EXIT', 'Показване на страниците първенци в излизането от сайта ви');
|
||||
|
||||
@@ -13,3 +13,7 @@
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_BLAHBLAH', '以何种顺序排列来源链接(默认:链入次数)');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_DAY', '日期');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_FULLCOUNT', '链入次数');
|
||||
@define('TOP_REFERRER', '主要来源');
|
||||
@define('SHOWS_TOP_SITES', '显示连接到你的网站');
|
||||
@define('TOP_EXITS', '主要出源');
|
||||
@define('SHOWS_TOP_EXIT', '显示网站的主要出源');
|
||||
|
||||
@@ -20,4 +20,7 @@
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_BLAHBLAH', 'Podle èeho mají být odkazy øazené? (Standardnì: Poøadí v textu)');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_DAY', 'Datum');
|
||||
@define('PLUGIN_ENTRYLINKS_ORDERBY_FULLCOUNT', 'Poøadí v textu');
|
||||
|
||||
@define('TOP_REFERRER', 'Top odkazovaèe');
|
||||
@define('SHOWS_TOP_SITES', 'Nejèastìjší pøipojení k tomuto weblogu');
|
||||
@define('TOP_EXITS', 'Top výstupy');
|
||||
@define('SHOWS_TOP_EXIT', 'Nejèastìjší výstupy z tohoto weblogu');
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user