mirror of
https://github.com/php/web-wiki.git
synced 2025-08-13 13:33:46 +00:00
- update to dokuwiki 2008-05-05
This commit is contained in:
259
dokuwiki/lib/plugins/popularity/admin.php
Normal file
259
dokuwiki/lib/plugins/popularity/admin.php
Normal file
@ -0,0 +1,259 @@
|
||||
<?php
|
||||
/**
|
||||
* Popularity Feedback Plugin
|
||||
*
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
* @author Andreas Gohr <andi@splitbrain.org>
|
||||
*/
|
||||
// must be run within Dokuwiki
|
||||
if(!defined('DOKU_INC')) die();
|
||||
|
||||
if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
|
||||
require_once(DOKU_PLUGIN.'admin.php');
|
||||
require_once(DOKU_INC.'inc/infoutils.php');
|
||||
require_once(DOKU_INC.'inc/pluginutils.php');
|
||||
require_once(DOKU_INC.'inc/search.php');
|
||||
|
||||
/**
|
||||
* All DokuWiki plugins to extend the admin function
|
||||
* need to inherit from this class
|
||||
*/
|
||||
class admin_plugin_popularity extends DokuWiki_Admin_Plugin {
|
||||
var $version = '2008-02-20';
|
||||
|
||||
|
||||
/**
|
||||
* return some info
|
||||
*/
|
||||
function getInfo(){
|
||||
return array(
|
||||
'author' => 'Andreas Gohr',
|
||||
'email' => 'andi@splitbrain.org',
|
||||
'date' => $this->version,
|
||||
'name' => 'Popularity Feedback Plugin',
|
||||
'desc' => 'Send anonymous data about your wiki to the developers.',
|
||||
'url' => 'http://wiki.splitbrain.org/wiki:popularity',
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* return prompt for admin menu
|
||||
*/
|
||||
function getMenuText($language) {
|
||||
return $this->getLang('name');
|
||||
}
|
||||
|
||||
/**
|
||||
* return sort order for position in admin menu
|
||||
*/
|
||||
function getMenuSort() {
|
||||
return 2000;
|
||||
}
|
||||
|
||||
/**
|
||||
* Accessible for managers
|
||||
*/
|
||||
function forAdminOnly() {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* handle user request
|
||||
*/
|
||||
function handle() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Output HTML form
|
||||
*/
|
||||
function html() {
|
||||
echo $this->locale_xhtml('intro');
|
||||
|
||||
flush();
|
||||
$data = $this->_gather();
|
||||
echo '<form method="post" action="http://update.dokuwiki.org/popularity.php" accept-charset="utf-8">';
|
||||
echo '<fieldset style="width: 60%;">';
|
||||
echo '<textarea class="edit" rows="10" cols="80" readonly="readonly" name="data">';
|
||||
foreach($data as $key => $val){
|
||||
if(is_array($val)) foreach($val as $v){
|
||||
echo hsc($key)."\t".hsc($v)."\n";
|
||||
}else{
|
||||
echo hsc($key)."\t".hsc($val)."\n";
|
||||
}
|
||||
}
|
||||
echo '</textarea><br />';
|
||||
echo '<input type="submit" class="button" value="'.$this->getLang('submit').'"/>';
|
||||
echo '</fieldset>';
|
||||
echo '</form>';
|
||||
|
||||
// dbg($data);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Gather all information
|
||||
*/
|
||||
function _gather(){
|
||||
global $conf;
|
||||
global $auth;
|
||||
$data = array();
|
||||
$phptime = ini_get('max_execution_time');
|
||||
@set_time_limit(0);
|
||||
|
||||
// version
|
||||
$data['anon_id'] = md5(auth_cookiesalt());
|
||||
$data['version'] = getVersion();
|
||||
$data['popversion'] = $this->version;
|
||||
$data['language'] = $conf['lang'];
|
||||
$data['now'] = time();
|
||||
|
||||
// some config values
|
||||
$data['conf_useacl'] = $conf['useacl'];
|
||||
$data['conf_authtype'] = $conf['authtype'];
|
||||
$data['conf_template'] = $conf['template'];
|
||||
|
||||
// number and size of pages
|
||||
$list = array();
|
||||
search($list,$conf['datadir'],array($this,'_search_count'),'','');
|
||||
$data['page_count'] = $list['file_count'];
|
||||
$data['page_size'] = $list['file_size'];
|
||||
$data['page_biggest'] = $list['file_max'];
|
||||
$data['page_smallest'] = $list['file_min'];
|
||||
if($list['file_count']) $data['page_avg'] = $list['file_size'] / $list['file_count'];
|
||||
$data['page_oldest'] = $list['file_oldest'];
|
||||
unset($list);
|
||||
|
||||
// number and size of media
|
||||
$list = array();
|
||||
search($list,$conf['mediadir'],array($this,'_search_count'),array('all'=>true));
|
||||
$data['media_count'] = $list['file_count'];
|
||||
$data['media_size'] = $list['file_size'];
|
||||
$data['media_biggest'] = $list['file_max'];
|
||||
$data['media_smallest'] = $list['file_min'];
|
||||
if($list['file_count']) $data['media_avg'] = $list['file_size'] / $list['file_count'];
|
||||
unset($list);
|
||||
|
||||
// number and size of cache
|
||||
$list = array();
|
||||
search($list,$conf['cachedir'],array($this,'_search_count'),array('all'=>true));
|
||||
$data['cache_count'] = $list['file_count'];
|
||||
$data['cache_size'] = $list['file_size'];
|
||||
$data['cache_biggest'] = $list['file_max'];
|
||||
$data['cache_smallest'] = $list['file_min'];
|
||||
if($list['file_count']) $data['cache_avg'] = $list['file_size'] / $list['file_count'];
|
||||
unset($list);
|
||||
|
||||
// number and size of index
|
||||
$list = array();
|
||||
search($list,$conf['indexdir'],array($this,'_search_count'),array('all'=>true));
|
||||
$data['index_count'] = $list['file_count'];
|
||||
$data['index_size'] = $list['file_size'];
|
||||
$data['index_biggest'] = $list['file_max'];
|
||||
$data['index_smallest'] = $list['file_min'];
|
||||
if($list['file_count']) $data['index_avg'] = $list['file_size'] / $list['file_count'];
|
||||
unset($list);
|
||||
|
||||
// number and size of meta
|
||||
$list = array();
|
||||
search($list,$conf['metadir'],array($this,'_search_count'),array('all'=>true));
|
||||
$data['meta_count'] = $list['file_count'];
|
||||
$data['meta_size'] = $list['file_size'];
|
||||
$data['meta_biggest'] = $list['file_max'];
|
||||
$data['meta_smallest'] = $list['file_min'];
|
||||
if($list['file_count']) $data['meta_avg'] = $list['file_size'] / $list['file_count'];
|
||||
unset($list);
|
||||
|
||||
// number and size of attic
|
||||
$list = array();
|
||||
search($list,$conf['olddir'],array($this,'_search_count'),array('all'=>true));
|
||||
$data['attic_count'] = $list['file_count'];
|
||||
$data['attic_size'] = $list['file_size'];
|
||||
$data['attic_biggest'] = $list['file_max'];
|
||||
$data['attic_smallest'] = $list['file_min'];
|
||||
if($list['file_count']) $data['attic_avg'] = $list['file_size'] / $list['file_count'];
|
||||
$data['attic_oldest'] = $list['file_oldest'];
|
||||
unset($list);
|
||||
|
||||
// user count
|
||||
if($auth && $auth->canDo('getUserCount')){
|
||||
$data['user_count'] = $auth->getUserCount();
|
||||
}
|
||||
|
||||
// calculate edits per day
|
||||
$list = @file($conf['metadir'].'/_dokuwiki.changes');
|
||||
$count = count($list);
|
||||
if($count > 2){
|
||||
$first = (int) substr(array_shift($list),0,10);
|
||||
$last = (int) substr(array_pop($list),0,10);
|
||||
$dur = ($last - $first)/(60*60*24); // number of days in the changelog
|
||||
$data['edits_per_day'] = $count/$dur;
|
||||
}
|
||||
unset($list);
|
||||
|
||||
// plugins
|
||||
$data['plugin'] = plugin_list();
|
||||
|
||||
// pcre info
|
||||
if(defined('PCRE_VERSION')) $data['pcre_version'] = PCRE_VERSION;
|
||||
$data['pcre_backtrack'] = ini_get('pcre.backtrack_limit');
|
||||
$data['pcre_recursion'] = ini_get('pcre.recursion_limit');
|
||||
|
||||
// php info
|
||||
$data['os'] = PHP_OS;
|
||||
$data['webserver'] = $_SERVER['SERVER_SOFTWARE'];
|
||||
$data['php_version'] = phpversion();
|
||||
$data['php_sapi'] = php_sapi_name();
|
||||
$data['php_memory'] = $this->_to_byte(ini_get('memory_limit'));
|
||||
$data['php_exectime'] = $phptime;
|
||||
$data['php_extension'] = get_loaded_extensions();
|
||||
|
||||
return $data;
|
||||
}
|
||||
|
||||
|
||||
function _search_count(&$data,$base,$file,$type,$lvl,$opts){
|
||||
// traverse
|
||||
if($type == 'd'){
|
||||
$data['dir_count']++;
|
||||
return true;
|
||||
}
|
||||
|
||||
//only search txt files if 'all' option not set
|
||||
if($opts['all'] || substr($file,-4) == '.txt'){
|
||||
$size = filesize($base.'/'.$file);
|
||||
$date = filemtime($base.'/'.$file);
|
||||
$data['file_count']++;
|
||||
$data['file_size'] += $size;
|
||||
if(!isset($data['file_min']) || $data['file_min'] > $size) $data['file_min'] = $size;
|
||||
if($data['file_max'] < $size) $data['file_max'] = $size;
|
||||
if(!isset($data['file_oldest']) || $data['file_oldest'] > $date) $data['file_oldest'] = $date;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert php.ini shorthands to byte
|
||||
*
|
||||
* @author <gilthans dot NO dot SPAM at gmail dot com>
|
||||
* @link http://de3.php.net/manual/en/ini.core.php#79564
|
||||
*/
|
||||
function _to_byte($v){
|
||||
$l = substr($v, -1);
|
||||
$ret = substr($v, 0, -1);
|
||||
switch(strtoupper($l)){
|
||||
case 'P':
|
||||
$ret *= 1024;
|
||||
case 'T':
|
||||
$ret *= 1024;
|
||||
case 'G':
|
||||
$ret *= 1024;
|
||||
case 'M':
|
||||
$ret *= 1024;
|
||||
case 'K':
|
||||
$ret *= 1024;
|
||||
break;
|
||||
}
|
||||
return $ret;
|
||||
}
|
||||
}
|
9
dokuwiki/lib/plugins/popularity/lang/ca/intro.txt
Normal file
9
dokuwiki/lib/plugins/popularity/lang/ca/intro.txt
Normal file
@ -0,0 +1,9 @@
|
||||
====== Retroacció sobre popularitat ======
|
||||
|
||||
Aquesta eina recull dades anònimes sobre el vostre wiki i us permet enviar-les als desenvolupadors de DokuWiki. Això els ajudarà a entendre com utilitzen DokuWiki els usuaris i farà que futures decisions de desenvolupament es prenguin sobre la base d'estadístiques d'ús reals.
|
||||
|
||||
Els desenvolupadors de DokuWiki us preguen que repetiu aquest pas de tant en tant per tal de mantenir-los ben informats a mesura que creix el vostre wiki. Els conjunts de dades que envieu al llarg del temps quedaran identificats per un ID anònim.
|
||||
|
||||
Les dades que es recullen contenen informació com ara la vostra versió de DokuWiki, el nombre i la mida de pàgines i fitxers, els connectors instal·lats i informació sobre la vostra instal·lació de PHP.
|
||||
|
||||
Més avall es mostren les dades crues que s'enviaran. Feu servir el botó "Envia dades" per transferir aquesta informació.
|
8
dokuwiki/lib/plugins/popularity/lang/ca/lang.php
Normal file
8
dokuwiki/lib/plugins/popularity/lang/ca/lang.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Catalan language file
|
||||
*
|
||||
* @author Carles Bellver <carles.bellver@cent.uji.es>
|
||||
*/
|
||||
$lang['name'] = 'Retroacció sobre popularitat (pot trigar una mica a carregar)';
|
||||
$lang['submit'] = 'Envia dades';
|
19
dokuwiki/lib/plugins/popularity/lang/de/intro.txt
Normal file
19
dokuwiki/lib/plugins/popularity/lang/de/intro.txt
Normal file
@ -0,0 +1,19 @@
|
||||
====== Popularitäts-Feedback ======
|
||||
|
||||
Dieses Werkzeug sammelt verschiedene anonyme Daten über Ihr Wiki und erlaubt es Ihnen
|
||||
diese an die DokuWiki-Entwickler zurückzusenden. Diese Daten helfen den
|
||||
Entwicklern besser zu verstehen wie DokuWiki eingesetzt wird und stellt sicher,
|
||||
dass zukünftige, die Weiterentwicklung von DokuWiki betreffende, Entscheidungen
|
||||
auf Basis echter Nutzerdaten getroffen werden.
|
||||
|
||||
Bitte wiederholen Sie das Versenden der Daten von Zeit zu Zeit um die Entwickler über
|
||||
das Wachstum Ihres Wikis auf dem Laufenden zu halten. Ihre wiederholten Dateneinsendungen
|
||||
werden über eine anonyme ID identifieziert.
|
||||
|
||||
Die gesammelten Daten enthalten Informationen wie Ihre DokuWiki Version, die Anzahl
|
||||
und Größe Ihrer Seiten und Dateien, installierte Plugins und die eingesetzte PHP Installation.
|
||||
|
||||
Die zu übertragenen Roh-Daten werden in der untenstehenden Box angezeigt. Bitte
|
||||
drücken Sie die "Daten Senden" Schaltfläche um die Information zu übertragen.
|
||||
|
||||
|
7
dokuwiki/lib/plugins/popularity/lang/de/lang.php
Normal file
7
dokuwiki/lib/plugins/popularity/lang/de/lang.php
Normal file
@ -0,0 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
* German language file
|
||||
*
|
||||
*/
|
||||
$lang['name'] = 'Popularitäts-Feedback (Eventuell längere Ladezeit)';
|
||||
$lang['submit'] = 'Daten Senden';
|
19
dokuwiki/lib/plugins/popularity/lang/en/intro.txt
Normal file
19
dokuwiki/lib/plugins/popularity/lang/en/intro.txt
Normal file
@ -0,0 +1,19 @@
|
||||
====== Popularity Feedback ======
|
||||
|
||||
This tool gathers anonymous data about your wiki and allows you to send it back
|
||||
to the DokuWiki developers. This helps them to understand them how DokuWiki is
|
||||
used by its users and makes sure future development decisions are backed up by
|
||||
real world usage statistics.
|
||||
|
||||
You are encouraged to repeat this step from time to time to keep developers
|
||||
informed when your wiki grows. Your repeated data sets will be identified by an
|
||||
anonymous ID.
|
||||
|
||||
Data collected contains information like your DokuWiki version, the number and
|
||||
size of your pages and files, installed plugins and information about your PHP
|
||||
install.
|
||||
|
||||
The raw data that will be send is shown below. Please use the "Send Data" button
|
||||
to transfer the information.
|
||||
|
||||
|
4
dokuwiki/lib/plugins/popularity/lang/en/lang.php
Normal file
4
dokuwiki/lib/plugins/popularity/lang/en/lang.php
Normal file
@ -0,0 +1,4 @@
|
||||
<?php
|
||||
|
||||
$lang['name'] = 'Popularity Feedback (may take some time to load)';
|
||||
$lang['submit'] = 'Send Data';
|
9
dokuwiki/lib/plugins/popularity/lang/eo/intro.txt
Normal file
9
dokuwiki/lib/plugins/popularity/lang/eo/intro.txt
Normal file
@ -0,0 +1,9 @@
|
||||
====== Populareca Esploro ======
|
||||
|
||||
Tiu ĉi ilo prenas anoniman datenaron pri via vikio kaj ebligas al vi sendi ĝin ree al la kodumantoj de DokuWiki. Tio helpas ke ili komprenu kiel DokuWiki estas uzata kaj certigas ke estontaj disvolviĝaj decidoj estos subtenataj de statistikoj pri reala aplikado.
|
||||
|
||||
Ni instigas vin ripeti tiun agon iam kaj tiam por teni la disvolvigantojn informitaj, dum via vikio kreskas. Viaj resendotaj datenaroj estos identigitaj per anonima ID.
|
||||
|
||||
La kolektita datenaro enhavas informon pri versio de la instalita DokuWiki, nombro kaj grandeco de la paĝoj kaj dosieroj, instalitaj kromaĵoj kaj informoj pri via PHP-sistemo.
|
||||
|
||||
La kruda datenaro sendota estas montrita sube. Bonvole uzu la butonon "Sendi Datenaron" por transŝuti tiun informaron.
|
8
dokuwiki/lib/plugins/popularity/lang/eo/lang.php
Normal file
8
dokuwiki/lib/plugins/popularity/lang/eo/lang.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Esperanto language file
|
||||
*
|
||||
* @author Felipo Kastro <fefcas@gmail.com>
|
||||
*/
|
||||
$lang['name'] = 'Populareca Esploro (eble la ŝargo prokrastos iomete)';
|
||||
$lang['submit'] = 'Sendi Datenaron';
|
18
dokuwiki/lib/plugins/popularity/lang/es/intro.txt
Normal file
18
dokuwiki/lib/plugins/popularity/lang/es/intro.txt
Normal file
@ -0,0 +1,18 @@
|
||||
====== Retroalimentación (feedback) del plugin Popularity ======
|
||||
|
||||
Esta herramienta recopila datos anónimos sobre tu wiki y te permite enviarlos a
|
||||
los desarrolladores de Dokuwiki. Esto les ayuda a entenderles cómo usan Dokuwiki
|
||||
sus usuarios y asegura que las decisiones del desarrollo futuro del programa
|
||||
estén basadas por las estadísticas de uso del mundo real.
|
||||
|
||||
Te animamos a repetir este paso de vez en cuando para mantener informados a los
|
||||
desarrolladores a medida que tu wiki crece. Tus paquetes repetidos de datos se
|
||||
identifican por un ID anónimo.
|
||||
|
||||
Los datos recopilados contienen información como tu versión de Dokuwiki, el
|
||||
número y tamaño de tus páginas y ficheros, plugins instalados e información
|
||||
sobre tu PHP instalado.
|
||||
|
||||
Los datos que se enviarán se muestran más abajo. Por favor, usa el botón "Enviar
|
||||
Datos" para transferir la información.
|
||||
|
8
dokuwiki/lib/plugins/popularity/lang/es/lang.php
Normal file
8
dokuwiki/lib/plugins/popularity/lang/es/lang.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Spanish language file
|
||||
*
|
||||
* @author oliver@samera.com.py
|
||||
*/
|
||||
$lang['name'] = 'Retroinformación (Feedback) plugin Popularity';
|
||||
$lang['submit'] = 'Enviar datos';
|
20
dokuwiki/lib/plugins/popularity/lang/fr/intro.txt
Normal file
20
dokuwiki/lib/plugins/popularity/lang/fr/intro.txt
Normal file
@ -0,0 +1,20 @@
|
||||
====== Enquête de popularité ======
|
||||
|
||||
Cet outil collecte des données anonymes concernant votre wiki et vous
|
||||
permet de les expédier aux développeurs de DokuWiki. Ceci leur permet
|
||||
de mieux comprendre comment DokuWiki est employé par ses utilisateurs
|
||||
et d'orienter les décisions sur les développements futurs en tenant
|
||||
compte des statistiques d'usage réel.
|
||||
|
||||
Vous êtes encouragé à répéter l'opération de collecte et d'envoi des
|
||||
données anonymes de temps en temps afin d'informer les développeurs de
|
||||
la croissance de votre wiki.
|
||||
|
||||
Les données collectées contiennent des informations telle que votre
|
||||
version de DokuWiki, le nombre et la taille de vos pages et fichiers,
|
||||
les plugins installés ainsi que des informations sur la version de PHP
|
||||
installée.
|
||||
|
||||
Les données brutes qui sont envoyées sont affichées ci dessous. Merci
|
||||
d'utiliser le bouton "Envoyer les données" pour expédier l'information.
|
||||
|
9
dokuwiki/lib/plugins/popularity/lang/fr/lang.php
Normal file
9
dokuwiki/lib/plugins/popularity/lang/fr/lang.php
Normal file
@ -0,0 +1,9 @@
|
||||
<?php
|
||||
/**
|
||||
* French language file
|
||||
*
|
||||
* @author gb@isis.u-strasbg.fr
|
||||
* @author Guy Brand <gb@isis.u-strasbg.fr>
|
||||
*/
|
||||
$lang['name'] = 'Enquête de popularité (peut nécessiter un certain temps pour être chargé)';
|
||||
$lang['submit'] = 'Envoyer les données';
|
18
dokuwiki/lib/plugins/popularity/lang/gl/intro.txt
Normal file
18
dokuwiki/lib/plugins/popularity/lang/gl/intro.txt
Normal file
@ -0,0 +1,18 @@
|
||||
====== Resposta de Popularidade ======
|
||||
|
||||
Esta ferramenta recolle datos anónimos verbo do teu wiki e permíteche enviarllos
|
||||
aos desenvolvedores do DokuWiki. Isto axudaralles a ter unha idea do xeito en
|
||||
que se emprega o DokuWiki por parte dos seus usuarios, e asegura que as decisións
|
||||
de desenvolvemento futuro coincidan coas estatísticas de uso no mundo real.
|
||||
|
||||
Animámoste a levar a cabo este proceso de cando en vez para manter informados aos
|
||||
desenvolvedores a medida que o teu wiki vaia medrando. Os teus xogos de datos
|
||||
repetidos seran identificados por un ID anónimo.
|
||||
|
||||
Os datos recompilados conteñen información como a versión do teu Dokuwiki, o
|
||||
número e tamaño das túas páxinas e arquivos, os plugins instalados e información verbo
|
||||
da túa instalación do PHP.
|
||||
|
||||
Os datos en bruto que serán enviados amósanse embaixo. Por favor, emprega o botón
|
||||
"Enviar Datos" para transferir a información.
|
||||
|
8
dokuwiki/lib/plugins/popularity/lang/gl/lang.php
Normal file
8
dokuwiki/lib/plugins/popularity/lang/gl/lang.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Galician language file
|
||||
*
|
||||
* @author CiberIrmandade da Fala <infoxeral@ciberirmandade.org>
|
||||
*/
|
||||
$lang['name'] = 'Resposta de Popularidade (pode demorar un tempo a cargar)';
|
||||
$lang['submit'] = 'Enviar Datos';
|
9
dokuwiki/lib/plugins/popularity/lang/he/intro.txt
Normal file
9
dokuwiki/lib/plugins/popularity/lang/he/intro.txt
Normal file
@ -0,0 +1,9 @@
|
||||
====== משוב פופלריות ======
|
||||
|
||||
כלי זה אוסף מידע אנונימי אודות הויקי שלך ומאפשר לך לשלוח אותו חזרה למפתחי דוקוויקי. מידע זה יסיע להם להבין את השימוש שעושים משתמשי דוקוויקי במערכת ויבטיח שהחלטות עתידיות לגבי הפיתוח יתבססו על סטטיסטיקות שימוש אמיתי.
|
||||
|
||||
נודה אם תחזור על הפעולה מהעת לעת כדי לודא המפתחים מיודעים כשהויקי שלך גדל. המידע שישלח יזוהה על ידי תג אנונימי.
|
||||
|
||||
המידע שנאסף כולל פרטים כמו גרסת הדוקוויקי, מספר וגודל הדפים והקבצים שלך, הרחבות מותקנות ומידע אודות התקנת ה-PHP שלך.
|
||||
|
||||
המידע הגולמי שישלח מופיע מטה. נא השתמש בכפתור "שלח מידע" כדי להעבירו.
|
8
dokuwiki/lib/plugins/popularity/lang/he/lang.php
Normal file
8
dokuwiki/lib/plugins/popularity/lang/he/lang.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Hebrew language file
|
||||
*
|
||||
* @author Dotan Kamber <kamberd@yahoo.com>
|
||||
*/
|
||||
$lang['name'] = 'משוב פופולריות (יתכן זמן טעינה ארוך)';
|
||||
$lang['submit'] = 'שלח מידע';
|
9
dokuwiki/lib/plugins/popularity/lang/hu/intro.txt
Normal file
9
dokuwiki/lib/plugins/popularity/lang/hu/intro.txt
Normal file
@ -0,0 +1,9 @@
|
||||
====== Visszajelzés a DokuWiki használatáról ======
|
||||
|
||||
Ez az eszköz anonimizált adatokat gyűjt a wikidről, és lehetővé teszi, hogy elküldd a DokuWiki fejlesztőinek. Ez segít meglátni, hogy a felhasználók hogyan használják a DokuWikijüket, ezáltal biztosítja, hogy a későbbi fejlesztési döntések hátterében valós használati statisztikák álljanak.
|
||||
|
||||
Szeretnénk megkérni, hogy időről időre ismételd meg ezt a műveletet, hogy a fejlesztők értesülhessenek, hogyan nő a wikid mérete. Az ismételt adatküldéseid egy anoním ID-vel lesznek azonosítva.
|
||||
|
||||
Ilyen és hasonló információkat gyűjtünk: DokuWiki verziószáma, a lapok, fájlok mérete és darabszáma, feltelepített bővítmények, PHP installáció adatai.
|
||||
|
||||
Az elküldendő nyers adat lent látható. Kérjük, az "Adatok elküldése" gombbal juttasd el hozzánk!
|
8
dokuwiki/lib/plugins/popularity/lang/hu/lang.php
Normal file
8
dokuwiki/lib/plugins/popularity/lang/hu/lang.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Hungarian language file
|
||||
*
|
||||
* @author Sandor TIHANYI <stihanyi@gmail.com>
|
||||
*/
|
||||
$lang['name'] = 'Visszajelzés a DokuWiki használatáról (sok időt vehet igénybe a betöltése)';
|
||||
$lang['submit'] = 'Adatok elküldése';
|
9
dokuwiki/lib/plugins/popularity/lang/it/intro.txt
Normal file
9
dokuwiki/lib/plugins/popularity/lang/it/intro.txt
Normal file
@ -0,0 +1,9 @@
|
||||
====== Raccolta dati sul wiki ======
|
||||
|
||||
Questo strumento raccoglie dati anonimi sul tuo wiki e ti permette di inviarli agli sviluppatori di Dokuwiki. Questo aiuta loro a capire come Dokuwiki viene utilizzato dagli utenti e prendere decisioni future sullo sviluppo in base a quello che sono le reali statistiche di utilizzo da parte degli utenti.
|
||||
|
||||
Ti incoraggiamo a ripetere questa operazione più spesso per mantenere informati gli sviluppatori sulla crescita del tuo wiki. L'insieme dei dati raccolti saranno identificati tramite un ID anonimo.
|
||||
|
||||
I dati raccolti contengono informazioni come la versione di DokuWiki, il numero e le dimensioni delle pagine e dei files, i plugins installati e qualche informazione sulla versione di PHP presente nel sistema.
|
||||
|
||||
A continuazione puoi vedere un'anteprima dei dati che saranno inviati. Utilizza il tasto "Invia dati" per trasferire le informazioni.
|
8
dokuwiki/lib/plugins/popularity/lang/it/lang.php
Normal file
8
dokuwiki/lib/plugins/popularity/lang/it/lang.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Italian language file
|
||||
*
|
||||
* @author Diego Pierotto ita.translations@tiscali.it
|
||||
*/
|
||||
$lang['name'] = 'Raccolta dati sul wiki (può impiegare del tempo per caricarsi)';
|
||||
$lang['submit'] = 'Invia dati';
|
9
dokuwiki/lib/plugins/popularity/lang/ja/intro.txt
Normal file
9
dokuwiki/lib/plugins/popularity/lang/ja/intro.txt
Normal file
@ -0,0 +1,9 @@
|
||||
====== 利用状況調査 ======
|
||||
|
||||
このツールは、ご利用中のwikiの情報を収集し、それをDokuWikiの開発者へ匿名で送信するものです。開発者はこのツールにより、DokuWikiが実際にどの様に利用されているかを理解し、そして実際の利用状況に基づいて今後の開発方針の決定することができます。
|
||||
|
||||
お使いのwikiの規模が大きくなってきたときは、このステップを定期的に繰り返すことを推奨しています。また、送信されたデータは匿名のIDで識別されます。
|
||||
|
||||
DokuWikiのバージョン、ページとファイルの数とサイズ、インストール済みプラグイン、そしてお使いのPHPに関する情報が、送信されるデータに含まれます。
|
||||
|
||||
以下に表示されているデータが実際に送信されるデータとなります。"データ送信"ボタンを押して情報を送信してください。
|
7
dokuwiki/lib/plugins/popularity/lang/ja/lang.php
Normal file
7
dokuwiki/lib/plugins/popularity/lang/ja/lang.php
Normal file
@ -0,0 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
* Japanese language file
|
||||
*
|
||||
*/
|
||||
$lang['name'] = '利用状況調査(ロードに少し時間が掛かります)';
|
||||
$lang['submit'] = 'データ送信';
|
17
dokuwiki/lib/plugins/popularity/lang/nl/intro.txt
Normal file
17
dokuwiki/lib/plugins/popularity/lang/nl/intro.txt
Normal file
@ -0,0 +1,17 @@
|
||||
====== Populariteits terugkoppeling ======
|
||||
|
||||
Dit onderdeel verzamelt anonieme gegevens over je wiki en stelt je in staat deze te versturen
|
||||
naar de DokuWiki ontwikkelaars. Dit helpt hen te begrijpen hoe DokuWiki wordt gebruikt door
|
||||
de gebruikers en zorgt er ook voor dat toekomstige ontwikkelkeuzes kunnen worden gestaafd
|
||||
door echte gebruikersstatistieken.
|
||||
|
||||
Je wordt aangemoedigd om deze stappen van tijd tot tijd te herhalen om ontwikkelaars
|
||||
op de hoogte te houden zolang je wiki groeit. De herhaalde data zal worden geïdentificeerd
|
||||
door een uniek, anoniem ID.
|
||||
|
||||
De verzamelde gegevens bevat onder andere gegevens over je DokuWiki versie, het aantal-
|
||||
en de grootte van de paginas en bestanden, geïnstalleerde plugins en informatie over de PHP
|
||||
installatie.
|
||||
|
||||
De ruwe data dat verzonden zal worden staat hieronder. Gebruik de knop "Verstuur" om de
|
||||
informatie te verzenden.
|
8
dokuwiki/lib/plugins/popularity/lang/nl/lang.php
Normal file
8
dokuwiki/lib/plugins/popularity/lang/nl/lang.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Dutch language file
|
||||
*
|
||||
* @author Wouter Schoot <wouter@schoot.org>
|
||||
*/
|
||||
$lang['name'] = 'Populariteits terugkoppeling (dit kan even duren om in te laden)';
|
||||
$lang['submit'] = 'Verstuur';
|
9
dokuwiki/lib/plugins/popularity/lang/no/intro.txt
Normal file
9
dokuwiki/lib/plugins/popularity/lang/no/intro.txt
Normal file
@ -0,0 +1,9 @@
|
||||
====== Popularitetsfeedback ======
|
||||
|
||||
Dette verktøyet samler anonyme data om din wiki og lar deg sende det tilbake til DokuWikis utviklere. Dette hjelper utviklerne å forstå hvordan DokuWiki blir brukt av dets brukere, og gjør at fremtidig beslutninger om videre utvikling kan tuftes på statistikk fra virkelig bruk.
|
||||
|
||||
Du oppfordres herved til å gjenta dette skrittet fra tid til annen for å holde utviklerne informert når din wiki vokser. Ditt gjentatte datasett blir identifisert vha en anonym ID.
|
||||
|
||||
De data som samles inn inneholder informasjon som din DokuWiki-versjon, antallet og størrelsen på sider og filer, installerte plugins og informasjon om din installerte PHP.
|
||||
|
||||
Rådata som blir sendt vises nedenfor. Vennligst bruk knappen "Send data" for å overføre informasjonen.
|
8
dokuwiki/lib/plugins/popularity/lang/no/lang.php
Normal file
8
dokuwiki/lib/plugins/popularity/lang/no/lang.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Norwegian language file
|
||||
*
|
||||
* @author Rune M. Andersen <rune.andersen@gmail.com>
|
||||
*/
|
||||
$lang['name'] = 'Popularitetsfeedback (kan ta litt tid å laste)';
|
||||
$lang['submit'] = 'Send data';
|
9
dokuwiki/lib/plugins/popularity/lang/pl/intro.txt
Normal file
9
dokuwiki/lib/plugins/popularity/lang/pl/intro.txt
Normal file
@ -0,0 +1,9 @@
|
||||
====== Informacja o popularności ======
|
||||
|
||||
To narzędzie zbiera anonimowe dane o Twoim wiki i wysyła je do twórców DokuWiki. Zbieranie tych informacji pozwala na lepsze zrozumienie sposobów korzystania z DokuWiki i ułatwia podejmowanie przyszłych decyzji projektowych w oparciu o rzeczywiste dane statystyczne.
|
||||
|
||||
Zachęcamy do uruchamiania tej funkcji co pewien czas, by poinformować programistów DokuWiki o rozwoju Twojego wiki. Informacje przesyłane przez Ciebie będą oznaczone anonimowym identyfikatorem.
|
||||
|
||||
Zbierane dane zawierają informacje o wersji DokuWiki, ilości i rozmiarze stron i plików, zainstalowanych wtyczkach oraz informację o oprogramowaniu PHP.
|
||||
|
||||
Wysyłane dane przedstawione są poniżej. Naciśnij przycisk "Wyślij dane" w celu przesłania informacji.
|
8
dokuwiki/lib/plugins/popularity/lang/pl/lang.php
Normal file
8
dokuwiki/lib/plugins/popularity/lang/pl/lang.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Polish language file
|
||||
*
|
||||
* @author Grzegorz Żur <grzegorz.zur@gmail.com>
|
||||
*/
|
||||
$lang['name'] = 'Informacja o popularności (ładowanie może zająć dłuższą chwilę)';
|
||||
$lang['submit'] = 'Wyślij dane';
|
17
dokuwiki/lib/plugins/popularity/lang/pt-br/intro.txt
Normal file
17
dokuwiki/lib/plugins/popularity/lang/pt-br/intro.txt
Normal file
@ -0,0 +1,17 @@
|
||||
====== Retorno de Popularidade ======
|
||||
|
||||
Essa ferramenta coleta dados anônimos acerca do seu wiki e permite que você os
|
||||
envie para os desenvolvedores do DokuWiki. Isso ajuda-os a compreender como o
|
||||
DokuWiki é utilizado pelos seus usuários e garante que decisões para futuros
|
||||
desenvolvimentos sejam respaldadas por estatísticas de uso real.
|
||||
|
||||
Você é encorajado a repetir esse procedimento de tempos em tempos, para manter
|
||||
os desenvolvedores informados quando o seu wiki crescer. Seus pacotes de dados
|
||||
repetidos serão identificados por uma identificação anônima.
|
||||
|
||||
Os dados coletados contém informações do tipo: a versão do seu DokuWiki, o número
|
||||
e tamanho das suas páginas e arquivos, plugins instalados e informações sobre a sua
|
||||
instalação do PHP.
|
||||
|
||||
Os dados brutos que serão enviados é mostrado abaixo. Por favor, utilize o botão
|
||||
"Enviar dados" para transferir a informação.
|
8
dokuwiki/lib/plugins/popularity/lang/pt-br/lang.php
Normal file
8
dokuwiki/lib/plugins/popularity/lang/pt-br/lang.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Portuguese language file
|
||||
*
|
||||
* @author Frederico Gonçalves Guimarães <frederico@teia.bio.br>
|
||||
*/
|
||||
$lang['name'] = 'Retorno de popularidade (pode demorar um pouco para carregar)';
|
||||
$lang['submit'] = 'Enviar dados';
|
7
dokuwiki/lib/plugins/popularity/lang/sk/lang.php
Normal file
7
dokuwiki/lib/plugins/popularity/lang/sk/lang.php
Normal file
@ -0,0 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
* Slovak language file
|
||||
*
|
||||
* @author Michal Mesko <michal.mesko@gmail.com>
|
||||
*/
|
||||
$lang['submit'] = 'Poslať dáta';
|
14
dokuwiki/lib/plugins/popularity/lang/sv/intro.txt
Normal file
14
dokuwiki/lib/plugins/popularity/lang/sv/intro.txt
Normal file
@ -0,0 +1,14 @@
|
||||
====== Popularitetsfeedback ======
|
||||
|
||||
Detta verktyg samlar anonyma data om din wiki och låter dig skicka dessa till DokuWikis utvecklare.
|
||||
Det hjälper utvecklarna att förstå hur DokuWiki används och gör att framtida beslut om DokuWikis
|
||||
utveckling kan grundas på statistik från verkligt bruk.
|
||||
|
||||
Upprepa gärna detta steg då och då allteftersom din Wiki växer.
|
||||
Dina rapporter kommer att bli identifierade med hjälp av ett anonymt id.
|
||||
|
||||
Data som samlas in innehåller information om bland annat din DokuWiki-version, antalet och storleken på sidorna, installerade plugins samt information om din PHP-installation.
|
||||
|
||||
Rådata som kommer att sändas visas här nedanför. Vänligen använd knappen "Sänd data" för att överföra informationen.
|
||||
|
||||
|
8
dokuwiki/lib/plugins/popularity/lang/sv/lang.php
Normal file
8
dokuwiki/lib/plugins/popularity/lang/sv/lang.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Swedish language file
|
||||
*
|
||||
* @author Håkan Sandell <hakan.sandell[at]mydata.se>
|
||||
*/
|
||||
$lang['name'] = 'Popularitetsfeedback (det kan ta en stund att ladda sidan)';
|
||||
$lang['submit'] = 'Sänd data';
|
9
dokuwiki/lib/plugins/popularity/lang/zh/intro.txt
Normal file
9
dokuwiki/lib/plugins/popularity/lang/zh/intro.txt
Normal file
@ -0,0 +1,9 @@
|
||||
====== 人气反馈 ======
|
||||
|
||||
本工具收集关于您维基站点的匿名信息,并允许您将其发送给 DokuWiki 的开发者。这样做有助于我们了解用户是如何使用 DokuWiki 的,并能使我们未来的开发决策建立在现实使用数据上。
|
||||
|
||||
我们鼓励您不时重复该步骤,以便我们能了解您的维基站点发展进度。您的数据集将被匿名 ID 标识。
|
||||
|
||||
收集的数据包括 DokuWiki 版本、您的页面数量以及文件大小、已安装的插件、服务器上的 PHP 相关信息。
|
||||
|
||||
将被发送的原始数据如下所示。请点击“发送数据”按扭进行传输。
|
8
dokuwiki/lib/plugins/popularity/lang/zh/lang.php
Normal file
8
dokuwiki/lib/plugins/popularity/lang/zh/lang.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
/**
|
||||
* Chinese language file
|
||||
*
|
||||
* @author ZDYX <zhangduyixiong@gmail.com>
|
||||
*/
|
||||
$lang['name'] = '人气反馈(载入可能需要一些时间)';
|
||||
$lang['submit'] = '发送数据';
|
Reference in New Issue
Block a user