Wikinotizie:Monobook.js/LiveRC/LiveRCparam.js

Da Wikinotizie, le notizie a contenuto aperto

/*

LiveWP

// ///////////////////////////////////// //

Global variables / Variables globales

// ///////////////////////////////////// //

 */

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

// //////////////////// //

 */

// Category translation;
// /////////////////////
var lang_category = 'Categoria:';

// Menu translation;
// /////////////////
var lang_menu = [ {
  PAUSE:   "Pausa",
  PREVIEW: "Anteprima",
  LISTS:   "Liste",
  LOWDIFF: "Modifiche minori",
  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/ }
];

// 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: false },
  { template: "Vandalismo" , string: "Vandalismo" , hasPage: true },
  { template: "Avvisocopyviol" , string: "Violazione di copyright" , 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: "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: "Vandalismo}}{{Yc|" , string: "Vandalismo + YC" , hasPage: false },
  { template: "WNB" , string: "WNB" , hasPage: false },
  { template: "WND" , string: "WND" , hasPage: false },
  { template: "WNF" , string: "WNF" , hasPage: false },
  { template: "WNCV" , string: "WNCV" , hasPage: false },
  { template: "Turpiloquio" , string: "Turpiloquio" , hasPage: true }
];

/* 

*/