Utente:Wim b/calc/LiveRCparam.js

Nota: dopo aver pubblicato, potrebbe essere necessario pulire la cache del proprio browser per vedere i cambiamenti.

  • Firefox / Safari: tieni premuto il tasto delle maiuscole Shift e fai clic su Ricarica, oppure premi Ctrl-F5 o Ctrl-R (⌘-R su Mac)
  • Google Chrome: premi Ctrl-Shift-R (⌘-Shift-R su un Mac)
  • Internet Explorer / Edge: tieni premuto il tasto Ctrl e fai clic su Aggiorna, oppure premi Ctrl-F5
  • Opera: premi Ctrl-F5.
/*
==LiveWP==
*Documentation : [[:fr:User:EDUCA33E/LiveRC/Documentation]]
*Authors : [[:fr:User:EDUCA33E]] & [[:fr:User:TiChou]]
*Version: 0.3.4 (beta)

// ///////////////////////////////////// //
== Global variables / Variables globales ==
// ///////////////////////////////////// //

<pre> */

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, ...)

/* </pre>

// //////////////////// //
== Internationalization ==
// //////////////////// //

<pre> */

// 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 }
];

/* </pre> */