Utente:Airon90/LiveRC/LiveRCparam.js

Da Wikinotizie, le notizie a contenuto aperto

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: "Diff ridotti",
  RCLABEL: "Pannello",
  RCSHOW:  "RC",
  LOGSHOW: "Log",
  NOBOTS:  "Niente Bot",
  IPONLY:  "Solo IP",
  NAMESP:  "Namespace",
  XTIMES:  "volte",
  UNDORC:  "Annulla",
  CANCIMM: "Cancella subito",
  CANCCV:  "Cancella x copyviol",
  REVERT:  "Rollback",
  REASON:  "Motivazione",
  REASON2: "Motivazione o URL",
  AVERTS:  "Avvisare",
  VERIF:   "Segna come verificata",
  RVMES1:  "[[w: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: /^LiveRC : Annullata la modifica|[Aa]nnullata la modifica|[Aa]nnullate le modifiche|[Aa]nnullata\]\] la modifica/ }
];

// 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: COPYRIGHT , regex: 'Sospette violazioni di copyright' },
  { state: PAS       , regex: 'Avvisi di cancellazione' }
];

// LiveRC default template use;
// ////////////////////////////
var lstAvert = [
  { template: "Test"              , string: "Test"    , hasPage: true },
  { template: "Vandalismo"              , string: "Vandalismo"    , hasPage: true },
  { template: "Avvisocopyviol"              , string: "Violazione di copyright"    , hasPage: true },
  { template: "Avvisocopyviol|OTRS=no"              , string: "Violazione di copyright (no OTRS)"    , hasPage: true },
  { template: "Spam"              , string: "Spam"    , hasPage: true },
  { template: "Promozionale"              , string: "Promozionale"    , hasPage: true },
  { template: "Senza senso"          , string: "Senza senso"    , hasPage: true },
  { template: "Avvisoimmagine"            , string: "Immagine senza informazioni"      , hasPage: true  },
  { template: "Benvenuto"           , string: "Benvenuto" , hasPage: false },
  { template: "Grazie" , string: "Grazie" , hasPage: true },
  { template: "Oggetto" , string: "Oggetto" , hasPage: true },
  { template: "Turpiloquio" , string: "Turpiloquio" , hasPage: true },
  { template: "Avvisoavvisi" , string: "Avvisoavvisi" , hasPage: true },
  { template: "InvitoNPOV" , string: "Invito NPOV" , hasPage: true },
  { template: "Avvisosenzafonti" , string: "Senza fonti" , hasPage: true }
];

/* </pre> */