Wikibooks:Monobook.js/LiveRC/LiveRCparam.js
Aspetto
Questa pagina è inutilizzata o comunque obsoleta ed è mantenuta per scopi storici e di archivio. Le informazioni qui descritte sono superate e non devono essere considerate valide. Per favore, non modificare il testo sottostante senza avere prima avuto il necessario consenso. |
/*
LiveWP
[modifica sorgente]- Documentation : fr:User:EDUCA33E/LiveRC/Documentation
- Authors : fr:User:EDUCA33E & fr:User:TiChou
- Version: 0.3.4 (beta)
// ///////////////////////////////////// //
Global variables / Variables globales
[modifica sorgente]// ///////////////////////////////////// //
*/ var lrcRCLimit = 30; // LiveRC default RC list size; var lrcPreviewHeight = '250px'; // LiveRC default preview window height; var lrcAutoCloseDiff = 0; // LiveRC default Diff behaviour; var lrcTZ = ''; // Default time zone (+02:00, 02:00, -0200, -05:45, ...) /*
// //////////////////// //
Internationalization
[modifica sorgente]// //////////////////// //
*/ // Category translation; // ///////////////////// var lang_category = 'Categoria:'; // Menu translation; // ///////////////// var lang_menu = [ { PAUSE: "Pausa", PREVIEW: "Anteprima", LISTS: "Liste", LOWDIFF: "Modifiche minori", RCLABEL: "RC", NOBOTS: "Niente Bot", IPONLY: "Solo IP", NAMESP: "Namespace", XTIMES: "volte", UNDORC: "Annulla", REVERT: "Rollback", REASON: "Motivazione", AVERTS: "Avvisare", RVMES1: "[[Wikipedia:Monobook.js/LiveRC/Documentazione|LiveRC]] : Annullata la modifica di", RVMES2: "ritorno alla versione di", EMPTY: "Svuotata" } ]; // Comments test table (regexp format); // //////////////////////////////////// var commenttests = [ { state: BLANKING , regex: /^Pagina svuotata completamente/ }, { state: REPLACED , regex: /^Pagina sostituita con/ }, { state: REVERT , regex: /^[Aa]nnullat[ae] l[ae] modific/ } ]; // Categories test table (regexp format); var categoriestests = [ { state: LOCK , regex: 'Pagine semiprotette' }, { state: FULLLOCK , regex: 'Pagine protette' }, { state: HOMONYMIE , regex: 'Disambigua' }, { state: ADQ , regex: 'Voci in vetrina' }, { state: BA , regex: 'Buoni articoli' }, { state: APDQ , regex: 'Voci potenzialmente in vetrina' }, { state: COPYRIGHT , regex: 'Sospette violazioni di copyright' }, { state: PAS , regex: 'Avvisi di cancellazione' }, { state: FIRE , regex: 'Wikipompieri' } ]; // LiveRC default template use; // //////////////////////////// var lstAvert = [ { template: "Test" , string: "Test" , hasPage: false }, { template: "Vandalismo" , string: "Vandalismo" , hasPage: true }, { template: "Violazione di copyright" , string: "ViolazioneCopyright" , hasPage: true }, { template: "Spam" , string: "Spam" , hasPage: true }, { template: "Promozionale" , string: "Promozionale" , hasPage: true }, { template: "Senza senso" , string: "Senza senso" , hasPage: true }, { template: "Immagine senza informazioni" , string: "Avvisoimmagine" , hasPage: true }, { template: "Date personali" , string: "Date personali" , hasPage: true }, { template: "Benvenuto" , string: "Benvenuto" , hasPage: false }, { template: "Grazie" , string: "Grazie" , hasPage: false }, { template: "Oggetto" , string: "Oggetto" , hasPage: false }, { template: "Yc" , string: "Cartellino giallo" , hasPage: false }, { template: "Rc" , string: "Cartellino rosso" , hasPage: false }, { template: "Blocco" , string: "Blocco" , hasPage: false }, { template: "Test2" , string: "Test2" , hasPage: true }, { template: "Vandelismo}}{{Yc|" , string: "Vandalismo + YC" , hasPage: false } ]; /*
*/