Content deleted Content added
add a default small icon size |
add default status icon sizes, add comments for statuses table fields, and add the FFA status data |
||
Line 738:
-------------------------------------------------------------------------------
-- Statuses
-- Configuration for possible current statuses of the article.
-------------------------------------------------------------------------------
-- The statuses table contains valid statuses.
-- Each status can have the following fields:
--
-- id: the main ID for the status.
-- aliases: a table of ID aliases that can be used to access the config table.
-- image: The status image.
-- imageSize: The image size, including "px" suffix. The default is defined in
-- defaultStatusIconSize.
-- imageSmallSize: The image size if we are outputting a small template. The
-- default is defined in defaultSmallStatusIconSize.
-- text: The status text.
-- $1 - The full page name of the article or subject page
-- categories: An array of categories used by the status.
statuses = {
Line 747 ⟶ 762:
FFA = {
id = 'FFA',
image = 'Featured article star - cross.svg',
text = "'''$1''' is a [[Wikipedia:Former featured articles|former featured article]]. " ..
"Please see the links under Article milestones below for its original nomination page " ..
"(for older articles, check [[Wikipedia:Featured article candidates/Archived nominations/Index|the nomination archive]]) " ..
"and why it was removed.",
categories = {'Wikipedia former featured articles'}
},
FFAC = {
Line 903 ⟶ 923:
uncollapsedRows = 3,
-- The default size for
defaultIconSize = '30px',
-- The default size for
defaultSmallIconSize = '15px',
-- The default size for status icons. The default is 50px.
defaultStatusIconSize = '50px',
-- The default size for status icons for small templates. The default is 30px.
defaultSmallStatusIconSize = '30px',
-- The default size for notice bar icons. The default is 15px.
|