-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTraffic.i18n.php
More file actions
48 lines (44 loc) · 1.5 KB
/
Traffic.i18n.php
File metadata and controls
48 lines (44 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
/**
* Common i18n file for the whole extension
*/
$messages = array();
//TORRENT UPLOAD
/** Spanish
* @author numerico
*/
$messages['es'] = array(//TODO codigo español
'specialtorrentupload' => "Subir Torrent", // Important! This is the string that appears on Special:SpecialPages
'specialtorrentupload-desc' => "Formulario para subir un archivo .torrent",
//upload form
'torrent' => "Archivo .torrent",
'torrentname' => "Nombre del torrent",
'torrentdesc' => "Comentario",
'torrentupload' => "Difundir",
'invalidtorrentext' => '¡El archivo no es un .torrent!',
//upload hook
'uploadhookdesc' => 'guarda los torrents subidos para rastrearlos',
);
/** English
* @author numerico
*/
$messages[ 'en' ] = array(
'specialtorrentupload' => "Torrent Upload", // Important! This is the string that appears on Special:SpecialPages
'specialtorrentupload-desc' => "Torrent files upload form",
//upload form
'torrent' => "Torrent file",
'torrentname' => "Torrent's name",
'torrentdesc' => "Comment",
'torrentupload' => "Upload",
'invalidtorrentext' => "¡Not a .torrent file!",
//upload hook
'uploadhookdesc' => 'save uploaded torrents for tracking',
);
/** Message documentation TODO
* @author numerico
$messages[ 'qqq' ] = array(
'myextension' => "The name of the extension's entry in Special:SpecialPages",
'myextension-desc' => "{{desc}}",
);
*/
?>