mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CiteThisPage
synced 2024-11-23 15:16:46 +00:00
Rename to "CiteThisPage", make Special:CiteThisPage the primary location
Also remove vestiges of the Cite extension from when this used to live in the same repo. Change-Id: I17dfad706d46afb452e8ff29140834174470b398
This commit is contained in:
parent
b1e6cada46
commit
7c705dbac3
|
@ -1,5 +1,5 @@
|
|||
[gerrit]
|
||||
host=gerrit.wikimedia.org
|
||||
port=29418
|
||||
project=mediawiki/extensions/Cite.git
|
||||
project=mediawiki/extensions/CiteThisPage.git
|
||||
defaultbranch=master
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
modules/jquery.tooltip/jquery.tooltip.js
|
34
.jshintrc
34
.jshintrc
|
@ -1,34 +0,0 @@
|
|||
{
|
||||
"camelcase": true,
|
||||
"curly": true,
|
||||
"eqeqeq": true,
|
||||
"immed": true,
|
||||
"latedef": true,
|
||||
"newcap": true,
|
||||
"supernew": true,
|
||||
"shadow": true,
|
||||
"noarg": true,
|
||||
"noempty": true,
|
||||
"nonew": true,
|
||||
"quotmark": false, // sometimes double quotes make sense, e.g. "foo's" is better readable than 'foo\'s'
|
||||
"trailing": true,
|
||||
"undef": true,
|
||||
"unused": "vars", // we want to allow unused function parameters
|
||||
"laxbreak": true,
|
||||
"laxcomma": false,
|
||||
"onevar": false,
|
||||
"bitwise": false,
|
||||
"forin": false,
|
||||
"regexp": false,
|
||||
"strict": true,
|
||||
"scripturl": true,
|
||||
|
||||
// Environment
|
||||
"browser": true,
|
||||
|
||||
// Globals
|
||||
"predef": [
|
||||
"jQuery",
|
||||
"mediaWiki"
|
||||
]
|
||||
}
|
|
@ -1,35 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* This is a backwards-compatibility shim, generated by:
|
||||
* https://git.wikimedia.org/blob/mediawiki%2Fcore.git/HEAD/maintenance%2FgenerateJsonI18n.php
|
||||
*
|
||||
* Beginning with MediaWiki 1.23, translation strings are stored in json files,
|
||||
* and the EXTENSION.i18n.php file only exists to provide compatibility with
|
||||
* older releases of MediaWiki. For more information about this migration, see:
|
||||
* https://www.mediawiki.org/wiki/Requests_for_comment/Localisation_format
|
||||
*
|
||||
* This shim maintains compatibility back to MediaWiki 1.17.
|
||||
*/
|
||||
$messages = array();
|
||||
if ( !function_exists( 'wfJsonI18nShim857dcab70cc9660a' ) ) {
|
||||
function wfJsonI18nShim857dcab70cc9660a( $cache, $code, &$cachedData ) {
|
||||
$codeSequence = array_merge( array( $code ), $cachedData['fallbackSequence'] );
|
||||
foreach ( $codeSequence as $csCode ) {
|
||||
$fileName = dirname( __FILE__ ) . "/i18n/core/$csCode.json";
|
||||
if ( is_readable( $fileName ) ) {
|
||||
$data = FormatJson::decode( file_get_contents( $fileName ), true );
|
||||
foreach ( array_keys( $data ) as $key ) {
|
||||
if ( $key === '' || $key[0] === '@' ) {
|
||||
unset( $data[$key] );
|
||||
}
|
||||
}
|
||||
$cachedData['messages'] = array_merge( $data, $cachedData['messages'] );
|
||||
}
|
||||
|
||||
$cachedData['deps'][] = new FileDependency( $fileName );
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
$GLOBALS['wgHooks']['LocalisationCacheRecache'][] = 'wfJsonI18nShim857dcab70cc9660a';
|
||||
}
|
82
Cite.php
82
Cite.php
|
@ -1,82 +0,0 @@
|
|||
<?php
|
||||
if ( ! defined( 'MEDIAWIKI' ) )
|
||||
die();
|
||||
/**#@+
|
||||
* A parser extension that adds two tags, <ref> and <references> for adding
|
||||
* citations to pages
|
||||
*
|
||||
* @file
|
||||
* @ingroup Extensions
|
||||
*
|
||||
* @link http://www.mediawiki.org/wiki/Extension:Cite/Cite.php Documentation
|
||||
*
|
||||
* @bug 4579
|
||||
*
|
||||
* @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
|
||||
* @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
|
||||
*/
|
||||
|
||||
$wgHooks['ParserFirstCallInit'][] = 'wfCite';
|
||||
|
||||
$wgExtensionCredits['parserhook'][] = array(
|
||||
'path' => __FILE__,
|
||||
'name' => 'Cite',
|
||||
'author' => array( 'Ævar Arnfjörð Bjarmason', 'Marius Hoch' ),
|
||||
'descriptionmsg' => 'cite-desc',
|
||||
'url' => 'https://www.mediawiki.org/wiki/Extension:Cite/Cite.php'
|
||||
);
|
||||
|
||||
$wgParserTestFiles[] = __DIR__ . "/citeParserTests.txt";
|
||||
$wgMessagesDirs['Cite'] = __DIR__ . '/i18n/core';
|
||||
$wgExtensionMessagesFiles['Cite'] = __DIR__ . "/Cite.i18n.php";
|
||||
$wgAutoloadClasses['Cite'] = __DIR__ . "/Cite_body.php";
|
||||
$wgSpecialPageGroups['Cite'] = 'pagetools';
|
||||
|
||||
define( 'CITE_DEFAULT_GROUP', '' );
|
||||
/**
|
||||
* The emergency shut-off switch. Override in local settings to disable
|
||||
* groups; or remove all references from this file to enable unconditionally
|
||||
*/
|
||||
$wgAllowCiteGroups = true;
|
||||
|
||||
/**
|
||||
* An emergency optimisation measure for caching cite <references /> output.
|
||||
*/
|
||||
$wgCiteCacheReferences = false;
|
||||
|
||||
/**
|
||||
* Performs the hook registration.
|
||||
* Note that several extensions (and even core!) try to detect if Cite is
|
||||
* installed by looking for wfCite().
|
||||
*
|
||||
* @param $parser Parser
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
function wfCite( $parser ) {
|
||||
return Cite::setHooks( $parser );
|
||||
}
|
||||
|
||||
// Resources
|
||||
$citeResourceTemplate = array(
|
||||
'localBasePath' => __DIR__ . '/modules',
|
||||
'remoteExtPath' => 'Cite/modules'
|
||||
);
|
||||
|
||||
$wgResourceModules['ext.cite'] = $citeResourceTemplate + array(
|
||||
'scripts' => 'ext.cite.js',
|
||||
'styles' => 'ext.cite.css',
|
||||
'messages' => array(
|
||||
'cite_references_link_accessibility_label',
|
||||
'cite_references_link_many_accessibility_label',
|
||||
),
|
||||
);
|
||||
|
||||
/* Add RTL fix for the cite <sup> elements */
|
||||
$wgResourceModules['ext.rtlcite'] = $citeResourceTemplate + array(
|
||||
'styles' => 'ext.rtlcite.css',
|
||||
'position' => 'top',
|
||||
);
|
||||
|
||||
/**#@-*/
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
/**
|
||||
* Aliases for Special:Cite
|
||||
* Aliases for Special:CiteThisPage
|
||||
*
|
||||
* @file
|
||||
* @ingroup Extensions
|
||||
|
@ -11,415 +11,415 @@ $specialPageAliases = array();
|
|||
|
||||
/** English (English) */
|
||||
$specialPageAliases['en'] = array(
|
||||
'Cite' => array( 'Cite' ),
|
||||
'CiteThisPage' => array( 'CiteThisPage', 'Cite' ),
|
||||
);
|
||||
|
||||
/** Arabic (العربية) */
|
||||
$specialPageAliases['ar'] = array(
|
||||
'Cite' => array( 'استشهاد' ),
|
||||
'CiteThisPage' => array( 'استشهاد' ),
|
||||
);
|
||||
|
||||
/** Egyptian Spoken Arabic (مصرى) */
|
||||
$specialPageAliases['arz'] = array(
|
||||
'Cite' => array( 'استشهاد' ),
|
||||
'CiteThisPage' => array( 'استشهاد' ),
|
||||
);
|
||||
|
||||
/** Assamese (অসমীয়া) */
|
||||
$specialPageAliases['as'] = array(
|
||||
'Cite' => array( 'উদ্ধৃতি' ),
|
||||
'CiteThisPage' => array( 'উদ্ধৃতি' ),
|
||||
);
|
||||
|
||||
/** Bikol Central (Bikol Central) */
|
||||
$specialPageAliases['bcl'] = array(
|
||||
'Cite' => array( 'Sambitón' ),
|
||||
'CiteThisPage' => array( 'Sambitón' ),
|
||||
);
|
||||
|
||||
/** Bulgarian (български) */
|
||||
$specialPageAliases['bg'] = array(
|
||||
'Cite' => array( 'Цитиране' ),
|
||||
'CiteThisPage' => array( 'Цитиране' ),
|
||||
);
|
||||
|
||||
/** Banjar (Bahasa Banjar) */
|
||||
$specialPageAliases['bjn'] = array(
|
||||
'Cite' => array( 'Juhut' ),
|
||||
'CiteThisPage' => array( 'Juhut' ),
|
||||
);
|
||||
|
||||
/** Breton (brezhoneg) */
|
||||
$specialPageAliases['br'] = array(
|
||||
'Cite' => array( 'Menegiñ' ),
|
||||
'CiteThisPage' => array( 'Menegiñ' ),
|
||||
);
|
||||
|
||||
/** Bosnian (bosanski) */
|
||||
$specialPageAliases['bs'] = array(
|
||||
'Cite' => array( 'Citiraj' ),
|
||||
'CiteThisPage' => array( 'Citiraj' ),
|
||||
);
|
||||
|
||||
/** буряад (буряад) */
|
||||
$specialPageAliases['bxr'] = array(
|
||||
'Cite' => array( 'Сайт' ),
|
||||
'CiteThisPage' => array( 'Сайт' ),
|
||||
);
|
||||
|
||||
/** Catalan (català) */
|
||||
$specialPageAliases['ca'] = array(
|
||||
'Cite' => array( 'Citau', 'Citeu' ),
|
||||
'CiteThisPage' => array( 'Citau', 'Citeu' ),
|
||||
);
|
||||
|
||||
/** Min Dong Chinese (Mìng-dĕ̤ng-ngṳ̄) */
|
||||
$specialPageAliases['cdo'] = array(
|
||||
'Cite' => array( '註' ),
|
||||
'CiteThisPage' => array( '註' ),
|
||||
);
|
||||
|
||||
/** Chechen (нохчийн) */
|
||||
$specialPageAliases['ce'] = array(
|
||||
'Cite' => array( 'Дош' ),
|
||||
'CiteThisPage' => array( 'Дош' ),
|
||||
);
|
||||
|
||||
/** Czech (čeština) */
|
||||
$specialPageAliases['cs'] = array(
|
||||
'Cite' => array( 'Citovat' ),
|
||||
'CiteThisPage' => array( 'Citovat' ),
|
||||
);
|
||||
|
||||
/** Danish (dansk) */
|
||||
$specialPageAliases['da'] = array(
|
||||
'Cite' => array( 'Citer' ),
|
||||
'CiteThisPage' => array( 'Citer' ),
|
||||
);
|
||||
|
||||
/** German (Deutsch) */
|
||||
$specialPageAliases['de'] = array(
|
||||
'Cite' => array( 'Zitierhilfe', 'Zitieren' ),
|
||||
'CiteThisPage' => array( 'Zitierhilfe', 'Zitieren' ),
|
||||
);
|
||||
|
||||
/** Zazaki (Zazaki) */
|
||||
$specialPageAliases['diq'] = array(
|
||||
'Cite' => array( 'Sita' ),
|
||||
'CiteThisPage' => array( 'Sita' ),
|
||||
);
|
||||
|
||||
/** Lower Sorbian (dolnoserbski) */
|
||||
$specialPageAliases['dsb'] = array(
|
||||
'Cite' => array( 'Citěrowańska_pomoc' ),
|
||||
'CiteThisPage' => array( 'Citěrowańska_pomoc' ),
|
||||
);
|
||||
|
||||
/** Greek (Ελληνικά) */
|
||||
$specialPageAliases['el'] = array(
|
||||
'Cite' => array( 'Παραπομπή' ),
|
||||
'CiteThisPage' => array( 'Παραπομπή' ),
|
||||
);
|
||||
|
||||
/** Esperanto (Esperanto) */
|
||||
$specialPageAliases['eo'] = array(
|
||||
'Cite' => array( 'Citi' ),
|
||||
'CiteThisPage' => array( 'Citi' ),
|
||||
);
|
||||
|
||||
/** Spanish (español) */
|
||||
$specialPageAliases['es'] = array(
|
||||
'Cite' => array( 'Citar' ),
|
||||
'CiteThisPage' => array( 'Citar' ),
|
||||
);
|
||||
|
||||
/** Estonian (eesti) */
|
||||
$specialPageAliases['et'] = array(
|
||||
'Cite' => array( 'Tsiteerimine' ),
|
||||
'CiteThisPage' => array( 'Tsiteerimine' ),
|
||||
);
|
||||
|
||||
/** Persian (فارسی) */
|
||||
$specialPageAliases['fa'] = array(
|
||||
'Cite' => array( 'یادکرد' ),
|
||||
'CiteThisPage' => array( 'یادکرد' ),
|
||||
);
|
||||
|
||||
/** Finnish (suomi) */
|
||||
$specialPageAliases['fi'] = array(
|
||||
'Cite' => array( 'Viittaus' ),
|
||||
'CiteThisPage' => array( 'Viittaus' ),
|
||||
);
|
||||
|
||||
/** French (français) */
|
||||
$specialPageAliases['fr'] = array(
|
||||
'Cite' => array( 'Citer' ),
|
||||
'CiteThisPage' => array( 'Citer' ),
|
||||
);
|
||||
|
||||
/** Franco-Provençal (arpetan) */
|
||||
$specialPageAliases['frp'] = array(
|
||||
'Cite' => array( 'Citar' ),
|
||||
'CiteThisPage' => array( 'Citar' ),
|
||||
);
|
||||
|
||||
/** Galician (galego) */
|
||||
$specialPageAliases['gl'] = array(
|
||||
'Cite' => array( 'Cita', 'Citar' ),
|
||||
'CiteThisPage' => array( 'Cita', 'Citar' ),
|
||||
);
|
||||
|
||||
/** Swiss German (Alemannisch) */
|
||||
$specialPageAliases['gsw'] = array(
|
||||
'Cite' => array( 'Zitierhilf' ),
|
||||
'CiteThisPage' => array( 'Zitierhilf' ),
|
||||
);
|
||||
|
||||
/** Hebrew (עברית) */
|
||||
$specialPageAliases['he'] = array(
|
||||
'Cite' => array( 'ציטוט' ),
|
||||
'CiteThisPage' => array( 'ציטוט' ),
|
||||
);
|
||||
|
||||
/** Croatian (hrvatski) */
|
||||
$specialPageAliases['hr'] = array(
|
||||
'Cite' => array( 'Citiraj' ),
|
||||
'CiteThisPage' => array( 'Citiraj' ),
|
||||
);
|
||||
|
||||
/** Upper Sorbian (hornjoserbsce) */
|
||||
$specialPageAliases['hsb'] = array(
|
||||
'Cite' => array( 'Citowanska_pomoc' ),
|
||||
'CiteThisPage' => array( 'Citowanska_pomoc' ),
|
||||
);
|
||||
|
||||
/** 湘语 (湘语) */
|
||||
$specialPageAliases['hsn'] = array(
|
||||
'Cite' => array( '建脚注' ),
|
||||
'CiteThisPage' => array( '建脚注' ),
|
||||
);
|
||||
|
||||
/** Haitian (Kreyòl ayisyen) */
|
||||
$specialPageAliases['ht'] = array(
|
||||
'Cite' => array( 'Site' ),
|
||||
'CiteThisPage' => array( 'Site' ),
|
||||
);
|
||||
|
||||
/** Hungarian (magyar) */
|
||||
$specialPageAliases['hu'] = array(
|
||||
'Cite' => array( 'Hivatkozás', 'Irodalomjegyzék' ),
|
||||
'CiteThisPage' => array( 'Hivatkozás', 'Irodalomjegyzék' ),
|
||||
);
|
||||
|
||||
/** Interlingua (interlingua) */
|
||||
$specialPageAliases['ia'] = array(
|
||||
'Cite' => array( 'Citation' ),
|
||||
'CiteThisPage' => array( 'Citation' ),
|
||||
);
|
||||
|
||||
/** Indonesian (Bahasa Indonesia) */
|
||||
$specialPageAliases['id'] = array(
|
||||
'Cite' => array( 'Kutip' ),
|
||||
'CiteThisPage' => array( 'Kutip' ),
|
||||
);
|
||||
|
||||
/** Igbo (Igbo) */
|
||||
$specialPageAliases['ig'] = array(
|
||||
'Cite' => array( 'Dépùtà' ),
|
||||
'CiteThisPage' => array( 'Dépùtà' ),
|
||||
);
|
||||
|
||||
/** Ido (Ido) */
|
||||
$specialPageAliases['io'] = array(
|
||||
'Cite' => array( 'Citar' ),
|
||||
'CiteThisPage' => array( 'Citar' ),
|
||||
);
|
||||
|
||||
/** Italian (italiano) */
|
||||
$specialPageAliases['it'] = array(
|
||||
'Cite' => array( 'Cita' ),
|
||||
'CiteThisPage' => array( 'Cita' ),
|
||||
);
|
||||
|
||||
/** Japanese (日本語) */
|
||||
$specialPageAliases['ja'] = array(
|
||||
'Cite' => array( '引用' ),
|
||||
'CiteThisPage' => array( '引用' ),
|
||||
);
|
||||
|
||||
/** Korean (한국어) */
|
||||
$specialPageAliases['ko'] = array(
|
||||
'Cite' => array( '인용' ),
|
||||
'CiteThisPage' => array( '인용' ),
|
||||
);
|
||||
|
||||
/** Colognian (Ripoarisch) */
|
||||
$specialPageAliases['ksh'] = array(
|
||||
'Cite' => array( 'Zitteere' ),
|
||||
'CiteThisPage' => array( 'Zitteere' ),
|
||||
);
|
||||
|
||||
/** Cornish (kernowek) */
|
||||
$specialPageAliases['kw'] = array(
|
||||
'Cite' => array( 'Devynna' ),
|
||||
'CiteThisPage' => array( 'Devynna' ),
|
||||
);
|
||||
|
||||
/** Ladino (Ladino) */
|
||||
$specialPageAliases['lad'] = array(
|
||||
'Cite' => array( 'MostrarManaderos' ),
|
||||
'CiteThisPage' => array( 'MostrarManaderos' ),
|
||||
);
|
||||
|
||||
/** Luxembourgish (Lëtzebuergesch) */
|
||||
$specialPageAliases['lb'] = array(
|
||||
'Cite' => array( 'Zitéierhellëf' ),
|
||||
'CiteThisPage' => array( 'Zitéierhellëf' ),
|
||||
);
|
||||
|
||||
/** Literary Chinese (文言) */
|
||||
$specialPageAliases['lzh'] = array(
|
||||
'Cite' => array( '引文' ),
|
||||
'CiteThisPage' => array( '引文' ),
|
||||
);
|
||||
|
||||
/** Macedonian (македонски) */
|
||||
$specialPageAliases['mk'] = array(
|
||||
'Cite' => array( 'Навод' ),
|
||||
'CiteThisPage' => array( 'Навод' ),
|
||||
);
|
||||
|
||||
/** Malayalam (മലയാളം) */
|
||||
$specialPageAliases['ml'] = array(
|
||||
'Cite' => array( 'അവലംബം' ),
|
||||
'CiteThisPage' => array( 'അവലംബം' ),
|
||||
);
|
||||
|
||||
/** Marathi (मराठी) */
|
||||
$specialPageAliases['mr'] = array(
|
||||
'Cite' => array( 'संदर्भद्या' ),
|
||||
'CiteThisPage' => array( 'संदर्भद्या' ),
|
||||
);
|
||||
|
||||
/** Malay (Bahasa Melayu) */
|
||||
$specialPageAliases['ms'] = array(
|
||||
'Cite' => array( 'Petik' ),
|
||||
'CiteThisPage' => array( 'Petik' ),
|
||||
);
|
||||
|
||||
/** Maltese (Malti) */
|
||||
$specialPageAliases['mt'] = array(
|
||||
'Cite' => array( 'Iċċita' ),
|
||||
'CiteThisPage' => array( 'Iċċita' ),
|
||||
);
|
||||
|
||||
/** Nahuatl (Nāhuatl) */
|
||||
$specialPageAliases['nah'] = array(
|
||||
'Cite' => array( 'Tlahtoa', 'Citar' ),
|
||||
'CiteThisPage' => array( 'Tlahtoa', 'Citar' ),
|
||||
);
|
||||
|
||||
/** Norwegian Bokmål (norsk bokmål) */
|
||||
$specialPageAliases['nb'] = array(
|
||||
'Cite' => array( 'Siteringshjelp' ),
|
||||
'CiteThisPage' => array( 'Siteringshjelp' ),
|
||||
);
|
||||
|
||||
/** Low German (Plattdüütsch) */
|
||||
$specialPageAliases['nds'] = array(
|
||||
'Cite' => array( 'Ziteerhelp' ),
|
||||
'CiteThisPage' => array( 'Ziteerhelp' ),
|
||||
);
|
||||
|
||||
/** Low Saxon (Netherlands) (Nedersaksies) */
|
||||
$specialPageAliases['nds-nl'] = array(
|
||||
'Cite' => array( 'Siteerhulpe' ),
|
||||
'CiteThisPage' => array( 'Siteerhulpe' ),
|
||||
);
|
||||
|
||||
/** Dutch (Nederlands) */
|
||||
$specialPageAliases['nl'] = array(
|
||||
'Cite' => array( 'Citeren' ),
|
||||
'CiteThisPage' => array( 'Citeren' ),
|
||||
);
|
||||
|
||||
/** Norwegian Nynorsk (norsk nynorsk) */
|
||||
$specialPageAliases['nn'] = array(
|
||||
'Cite' => array( 'Siter' ),
|
||||
'CiteThisPage' => array( 'Siter' ),
|
||||
);
|
||||
|
||||
/** Occitan (occitan) */
|
||||
$specialPageAliases['oc'] = array(
|
||||
'Cite' => array( 'Citar' ),
|
||||
'CiteThisPage' => array( 'Citar' ),
|
||||
);
|
||||
|
||||
/** Polish (polski) */
|
||||
$specialPageAliases['pl'] = array(
|
||||
'Cite' => array( 'Cytuj' ),
|
||||
'CiteThisPage' => array( 'Cytuj' ),
|
||||
);
|
||||
|
||||
/** Pashto (پښتو) */
|
||||
$specialPageAliases['ps'] = array(
|
||||
'Cite' => array( 'درک' ),
|
||||
'CiteThisPage' => array( 'درک' ),
|
||||
);
|
||||
|
||||
/** Portuguese (português) */
|
||||
$specialPageAliases['pt'] = array(
|
||||
'Cite' => array( 'Citar' ),
|
||||
'CiteThisPage' => array( 'Citar' ),
|
||||
);
|
||||
|
||||
/** Brazilian Portuguese (português do Brasil) */
|
||||
$specialPageAliases['pt-br'] = array(
|
||||
'Cite' => array( 'Citar' ),
|
||||
'CiteThisPage' => array( 'Citar' ),
|
||||
);
|
||||
|
||||
/** Romanian (română) */
|
||||
$specialPageAliases['ro'] = array(
|
||||
'Cite' => array( 'Citează' ),
|
||||
'CiteThisPage' => array( 'Citează' ),
|
||||
);
|
||||
|
||||
/** Russian (русский) */
|
||||
$specialPageAliases['ru'] = array(
|
||||
'Cite' => array( 'Цитата' ),
|
||||
'CiteThisPage' => array( 'Цитата' ),
|
||||
);
|
||||
|
||||
/** Sanskrit (संस्कृतम्) */
|
||||
$specialPageAliases['sa'] = array(
|
||||
'Cite' => array( 'उद्धृत' ),
|
||||
'CiteThisPage' => array( 'उद्धृत' ),
|
||||
);
|
||||
|
||||
/** Sicilian (sicilianu) */
|
||||
$specialPageAliases['scn'] = array(
|
||||
'Cite' => array( 'Cita' ),
|
||||
'CiteThisPage' => array( 'Cita' ),
|
||||
);
|
||||
|
||||
/** Slovak (slovenčina) */
|
||||
$specialPageAliases['sk'] = array(
|
||||
'Cite' => array( 'Citovať' ),
|
||||
'CiteThisPage' => array( 'Citovať' ),
|
||||
);
|
||||
|
||||
/** Slovenian (slovenščina) */
|
||||
$specialPageAliases['sl'] = array(
|
||||
'Cite' => array( 'Navedi' ),
|
||||
'CiteThisPage' => array( 'Navedi' ),
|
||||
);
|
||||
|
||||
/** Albanian (shqip) */
|
||||
$specialPageAliases['sq'] = array(
|
||||
'Cite' => array( 'Citim' ),
|
||||
'CiteThisPage' => array( 'Citim' ),
|
||||
);
|
||||
|
||||
/** Serbian (Cyrillic script) (српски (ћирилица)) */
|
||||
$specialPageAliases['sr-ec'] = array(
|
||||
'Cite' => array( 'Цитирај' ),
|
||||
'CiteThisPage' => array( 'Цитирај' ),
|
||||
);
|
||||
|
||||
/** Swedish (svenska) */
|
||||
$specialPageAliases['sv'] = array(
|
||||
'Cite' => array( 'Citera' ),
|
||||
'CiteThisPage' => array( 'Citera' ),
|
||||
);
|
||||
|
||||
/** Swahili (Kiswahili) */
|
||||
$specialPageAliases['sw'] = array(
|
||||
'Cite' => array( 'Taja', 'Hakikisha' ),
|
||||
'CiteThisPage' => array( 'Taja', 'Hakikisha' ),
|
||||
);
|
||||
|
||||
/** Tetum (tetun) */
|
||||
$specialPageAliases['tet'] = array(
|
||||
'Cite' => array( 'Sita' ),
|
||||
'CiteThisPage' => array( 'Sita' ),
|
||||
);
|
||||
|
||||
/** Thai (ไทย) */
|
||||
$specialPageAliases['th'] = array(
|
||||
'Cite' => array( 'อ้างอิง' ),
|
||||
'CiteThisPage' => array( 'อ้างอิง' ),
|
||||
);
|
||||
|
||||
/** Tagalog (Tagalog) */
|
||||
$specialPageAliases['tl'] = array(
|
||||
'Cite' => array( 'Sipiin' ),
|
||||
'CiteThisPage' => array( 'Sipiin' ),
|
||||
);
|
||||
|
||||
/** Turkish (Türkçe) */
|
||||
$specialPageAliases['tr'] = array(
|
||||
'Cite' => array( 'KaynakGöster' ),
|
||||
'CiteThisPage' => array( 'KaynakGöster' ),
|
||||
);
|
||||
|
||||
/** Urdu (اردو) */
|
||||
$specialPageAliases['ur'] = array(
|
||||
'Cite' => array( 'حوالہ' ),
|
||||
'CiteThisPage' => array( 'حوالہ' ),
|
||||
);
|
||||
|
||||
/** vèneto (vèneto) */
|
||||
$specialPageAliases['vec'] = array(
|
||||
'Cite' => array( 'Cita' ),
|
||||
'CiteThisPage' => array( 'Cita' ),
|
||||
);
|
||||
|
||||
/** Vietnamese (Tiếng Việt) */
|
||||
$specialPageAliases['vi'] = array(
|
||||
'Cite' => array( 'Ghi_chú' ),
|
||||
'CiteThisPage' => array( 'Ghi_chú' ),
|
||||
);
|
||||
|
||||
/** Yiddish (ייִדיש) */
|
||||
$specialPageAliases['yi'] = array(
|
||||
'Cite' => array( 'ציטירן' ),
|
||||
'CiteThisPage' => array( 'ציטירן' ),
|
||||
);
|
||||
|
||||
/** Cantonese (粵語) */
|
||||
$specialPageAliases['yue'] = array(
|
||||
'Cite' => array( '引用' ),
|
||||
'CiteThisPage' => array( '引用' ),
|
||||
);
|
||||
|
||||
/** Simplified Chinese (中文(简体)) */
|
||||
$specialPageAliases['zh-hans'] = array(
|
||||
'Cite' => array( '引用' ),
|
||||
'CiteThisPage' => array( '引用' ),
|
||||
);
|
||||
|
||||
/** Traditional Chinese (中文(繁體)) */
|
||||
$specialPageAliases['zh-hant'] = array(
|
||||
'Cite' => array( '引用' ),
|
||||
);
|
||||
'CiteThisPage' => array( '引用' ),
|
||||
);
|
|
@ -15,7 +15,7 @@ if ( !function_exists( 'wfJsonI18nShim0d54240ba430f97f' ) ) {
|
|||
function wfJsonI18nShim0d54240ba430f97f( $cache, $code, &$cachedData ) {
|
||||
$codeSequence = array_merge( array( $code ), $cachedData['fallbackSequence'] );
|
||||
foreach ( $codeSequence as $csCode ) {
|
||||
$fileName = dirname( __FILE__ ) . "/i18n/special/$csCode.json";
|
||||
$fileName = dirname( __FILE__ ) . "/i18n/$csCode.json";
|
||||
if ( is_readable( $fileName ) ) {
|
||||
$data = FormatJson::decode( file_get_contents( $fileName ), true );
|
||||
foreach ( array_keys( $data ) as $key ) {
|
88
CiteThisPage.php
Normal file
88
CiteThisPage.php
Normal file
|
@ -0,0 +1,88 @@
|
|||
<?php
|
||||
if ( !defined( 'MEDIAWIKI' ) ) die();
|
||||
/**
|
||||
* A special page extension that adds a special page that generates citations
|
||||
* about pages.
|
||||
*
|
||||
* @file
|
||||
* @ingroup Extensions
|
||||
*
|
||||
* @link http://www.mediawiki.org/wiki/Extension:CiteThisPage Documentation
|
||||
*
|
||||
* @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
|
||||
* @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
|
||||
*/
|
||||
|
||||
$wgExtensionCredits['specialpage'][] = array(
|
||||
'path' => __FILE__,
|
||||
'name' => 'CiteThisPage',
|
||||
'author' => array( 'Ævar Arnfjörð Bjarmason', 'James D. Forrester' ),
|
||||
'descriptionmsg' => 'citethispage-desc',
|
||||
'url' => 'https://www.mediawiki.org/wiki/Extension:CiteThisPage'
|
||||
);
|
||||
|
||||
# Internationalisation file
|
||||
$wgMessagesDirs['CiteThisPage'] = __DIR__ . '/i18n';
|
||||
$wgExtensionMessagesFiles['CiteThisPage'] = __DIR__ . '/CiteThisPage.i18n.php';
|
||||
$wgExtensionMessagesFiles['CiteThisPageAliases'] = __DIR__ . '/CiteThisPage.alias.php';
|
||||
|
||||
$wgHooks['SkinTemplateBuildNavUrlsNav_urlsAfterPermalink'][] = 'efCiteThisPageNav';
|
||||
$wgHooks['SkinTemplateToolboxEnd'][] = 'efSpecialCiteThisPageToolbox';
|
||||
|
||||
$wgSpecialPages['CiteThisPage'] = 'SpecialCiteThisPage';
|
||||
$wgAutoloadClasses['SpecialCiteThisPage'] = __DIR__ . '/SpecialCiteThisPage.php';
|
||||
|
||||
// Resources
|
||||
$citeThisPageResourceTemplate = array(
|
||||
'localBasePath' => __DIR__ . '/modules',
|
||||
'remoteExtPath' => 'CiteThisPage/modules'
|
||||
);
|
||||
|
||||
$wgResourceModules['ext.citeThisPage'] = $citeThisPageResourceTemplate + array(
|
||||
'styles' => 'ext.citeThisPage.css',
|
||||
);
|
||||
|
||||
/**
|
||||
* @param $skintemplate SkinTemplate
|
||||
* @param $nav_urls
|
||||
* @param $oldid
|
||||
* @param $revid
|
||||
* @return bool
|
||||
*/
|
||||
function efCiteThisPageNav( &$skintemplate, &$nav_urls, &$oldid, &$revid ) {
|
||||
// check whether we’re in the right namespace, the $revid has the correct type and is not empty
|
||||
// (what would mean that the current page doesn’t exist)
|
||||
$title = $skintemplate->getTitle();
|
||||
if ( $title->isContentPage() && $revid !== 0 && !empty( $revid ) )
|
||||
$nav_urls['citeThisPage'] = array(
|
||||
'args' => array( 'page' => $title->getPrefixedDBkey(), 'id' => $revid )
|
||||
);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add the cite link to the toolbar
|
||||
*
|
||||
* @param $skin Skin
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
function efSpecialCiteThisPageToolbox( &$skin ) {
|
||||
if ( isset( $skin->data['nav_urls']['citeThisPage'] ) ) {
|
||||
echo Html::rawElement(
|
||||
'li',
|
||||
array( 'id' => 't-cite' ),
|
||||
Linker::link(
|
||||
SpecialPage::getTitleFor( 'CiteThisPage' ),
|
||||
wfMessage( 'citethispage-link' )->escaped(),
|
||||
# Used message keys: 'tooltip-citethispage', 'accesskey-citethispage'
|
||||
Linker::tooltipAndAccessKeyAttribs( 'citethispage' ),
|
||||
$skin->data['nav_urls']['citeThisPage']['args']
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
1141
Cite_body.php
1141
Cite_body.php
File diff suppressed because it is too large
Load diff
|
@ -1,91 +0,0 @@
|
|||
<?php
|
||||
if ( !defined( 'MEDIAWIKI' ) ) die();
|
||||
/**
|
||||
* A special page extension that adds a special page that generates citations
|
||||
* for pages.
|
||||
*
|
||||
* @file
|
||||
* @ingroup Extensions
|
||||
*
|
||||
* @link http://www.mediawiki.org/wiki/Extension:Cite/Special:Cite.php Documentation
|
||||
*
|
||||
* @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
|
||||
* @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
|
||||
*/
|
||||
|
||||
$wgExtensionCredits['specialpage'][] = array(
|
||||
'path' => __FILE__,
|
||||
'name' => 'Cite',
|
||||
'author' => 'Ævar Arnfjörð Bjarmason',
|
||||
'descriptionmsg' => 'cite_article_desc',
|
||||
'url' => 'https://www.mediawiki.org/wiki/Extension:Cite/Special:Cite.php'
|
||||
);
|
||||
|
||||
$dir = __DIR__ . '/';
|
||||
# Internationalisation file
|
||||
$wgMessagesDirs['SpecialCite'] = __DIR__ . '/i18n/special';
|
||||
$wgExtensionMessagesFiles['SpecialCite'] = $dir . 'SpecialCite.i18n.php';
|
||||
$wgExtensionMessagesFiles['SpecialCiteAliases'] = $dir . 'SpecialCite.alias.php';
|
||||
|
||||
$wgHooks['SkinTemplateBuildNavUrlsNav_urlsAfterPermalink'][] = 'wfSpecialCiteNav';
|
||||
$wgHooks['SkinTemplateToolboxEnd'][] = 'wfSpecialCiteToolbox';
|
||||
|
||||
$wgSpecialPages['Cite'] = 'SpecialCite';
|
||||
$wgAutoloadClasses['SpecialCite'] = $dir . 'SpecialCite_body.php';
|
||||
|
||||
// Resources
|
||||
$citeResourceTemplate = array(
|
||||
'localBasePath' => __DIR__ . '/modules',
|
||||
'remoteExtPath' => 'Cite/modules'
|
||||
);
|
||||
|
||||
$wgResourceModules['ext.specialcite'] = $citeResourceTemplate + array(
|
||||
'styles' => 'ext.specialcite.css',
|
||||
'scripts' => array(),
|
||||
'position' => 'bottom',
|
||||
);
|
||||
|
||||
/**
|
||||
* @param $skintemplate SkinTemplate
|
||||
* @param $nav_urls
|
||||
* @param $oldid
|
||||
* @param $revid
|
||||
* @return bool
|
||||
*/
|
||||
function wfSpecialCiteNav( &$skintemplate, &$nav_urls, &$oldid, &$revid ) {
|
||||
// check whether we’re in the right namespace, the $revid has the correct type and is not empty
|
||||
// (what would mean that the current page doesn’t exist)
|
||||
$title = $skintemplate->getTitle();
|
||||
if ( $title->isContentPage() && $revid !== 0 && !empty( $revid ) )
|
||||
$nav_urls['cite'] = array(
|
||||
'args' => array( 'page' => $title->getPrefixedDBkey(), 'id' => $revid )
|
||||
);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* add the cite link to the toolbar
|
||||
*
|
||||
* @param $skin Skin
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
function wfSpecialCiteToolbox( &$skin ) {
|
||||
if ( isset( $skin->data['nav_urls']['cite'] ) ) {
|
||||
echo Html::rawElement(
|
||||
'li',
|
||||
array( 'id' => 't-cite' ),
|
||||
Linker::link(
|
||||
SpecialPage::getTitleFor( 'Cite' ),
|
||||
wfMessage( 'cite_article_link' )->escaped(),
|
||||
# Used message keys: 'tooltip-cite-article', 'accesskey-cite-article'
|
||||
Linker::tooltipAndAccessKeyAttribs( 'cite-article' ),
|
||||
$skin->data['nav_urls']['cite']['args']
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
|
@ -1,15 +1,15 @@
|
|||
<?php
|
||||
|
||||
class SpecialCite extends SpecialPage {
|
||||
class SpecialCiteThisPage extends SpecialPage {
|
||||
function __construct() {
|
||||
parent::__construct( 'Cite' );
|
||||
parent::__construct( 'CiteThisPage' );
|
||||
}
|
||||
|
||||
function execute( $par ) {
|
||||
global $wgUseTidy;
|
||||
|
||||
// Having tidy on causes whitespace and <pre> tags to
|
||||
// be generated around the output of the CiteOutput
|
||||
// be generated around the output of the CiteThisPageOutput
|
||||
// class TODO FIXME.
|
||||
$wgUseTidy = false;
|
||||
|
||||
|
@ -19,18 +19,18 @@ class SpecialCite extends SpecialPage {
|
|||
$page = $par !== null ? $par : $this->getRequest()->getText( 'page' );
|
||||
$title = Title::newFromText( $page );
|
||||
|
||||
$cform = new CiteForm( $title );
|
||||
$cform = new CiteThisPageForm( $title );
|
||||
$cform->execute();
|
||||
|
||||
if ( $title && $title->exists() ) {
|
||||
$id = $this->getRequest()->getInt( 'id' );
|
||||
$cout = new CiteOutput( $title, $id );
|
||||
$cout = new CiteThisPageOutput( $title, $id );
|
||||
$cout->execute();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class CiteForm {
|
||||
class CiteThisPageForm {
|
||||
/**
|
||||
* @var Title
|
||||
*/
|
||||
|
@ -46,13 +46,13 @@ class CiteForm {
|
|||
$wgOut->addHTML(
|
||||
Xml::openElement( 'form',
|
||||
array(
|
||||
'id' => 'specialcite',
|
||||
'id' => 'specialCiteThisPage',
|
||||
'method' => 'get',
|
||||
'action' => $wgScript
|
||||
) ) .
|
||||
Html::hidden( 'title', SpecialPage::getTitleFor( 'Cite' )->getPrefixedDBkey() ) .
|
||||
Html::hidden( 'title', SpecialPage::getTitleFor( 'CiteThisPage' )->getPrefixedDBkey() ) .
|
||||
Xml::openElement( 'label' ) .
|
||||
wfMessage( 'cite_page' )->escaped() . ' ' .
|
||||
wfMessage( 'citethispage-change-target' )->escaped() . ' ' .
|
||||
Xml::element( 'input',
|
||||
array(
|
||||
'type' => 'text',
|
||||
|
@ -66,7 +66,7 @@ class CiteForm {
|
|||
Xml::element( 'input',
|
||||
array(
|
||||
'type' => 'submit',
|
||||
'value' => wfMessage( 'cite_submit' )->escaped()
|
||||
'value' => wfMessage( 'citethispage-change-submit' )->escaped()
|
||||
),
|
||||
''
|
||||
) .
|
||||
|
@ -76,7 +76,7 @@ class CiteForm {
|
|||
}
|
||||
}
|
||||
|
||||
class CiteOutput {
|
||||
class CiteThisPageOutput {
|
||||
/**
|
||||
* @var Title
|
||||
*/
|
||||
|
@ -113,7 +113,7 @@ class CiteOutput {
|
|||
$this->genParserOptions();
|
||||
$this->genParser();
|
||||
|
||||
$wgParser->setHook( 'citation', array( $this, 'CiteParse' ) );
|
||||
$wgParser->setHook( 'citation', array( $this, 'citationTagParse' ) );
|
||||
}
|
||||
|
||||
function execute() {
|
||||
|
@ -121,22 +121,22 @@ class CiteOutput {
|
|||
|
||||
$wgHooks['ParserGetVariableValueTs'][] = array( $this, 'timestamp' );
|
||||
|
||||
$msg = wfMessage( 'cite_text' )->inContentLanguage()->plain();
|
||||
$msg = wfMessage( 'citethispage-content' )->inContentLanguage()->plain();
|
||||
if ( $msg == '' ) {
|
||||
# With MediaWiki 1.20 the plain text files were deleted and the text moved into SpecialCite.i18n.php
|
||||
# This code is kept for b/c in case an installation has its own file "cite_text-xx"
|
||||
# This code is kept for b/c in case an installation has its own file "citethispage-content-xx"
|
||||
# for a previously not supported language.
|
||||
global $wgContLang, $wgContLanguageCode;
|
||||
$dir = dirname( __FILE__ ) . DIRECTORY_SEPARATOR;
|
||||
$code = $wgContLang->lc( $wgContLanguageCode );
|
||||
if ( file_exists( "${dir}cite_text-$code" ) ) {
|
||||
$msg = file_get_contents( "${dir}cite_text-$code" );
|
||||
} elseif( file_exists( "${dir}cite_text" ) ){
|
||||
$msg = file_get_contents( "${dir}cite_text" );
|
||||
if ( file_exists( "${dir}citethispage-content-$code" ) ) {
|
||||
$msg = file_get_contents( "${dir}citethispage-content-$code" );
|
||||
} elseif( file_exists( "${dir}citethispage-content" ) ){
|
||||
$msg = file_get_contents( "${dir}citethispage-content" );
|
||||
}
|
||||
}
|
||||
$ret = $wgParser->parse( $msg, $this->mTitle, $this->mParserOptions, false, true, $this->getRevId() );
|
||||
$wgOut->addModules( 'ext.specialcite' );
|
||||
$wgOut->addModules( 'ext.specialCiteThisPage' );
|
||||
|
||||
# Introduced in 1.24
|
||||
if( method_exists( $wgOut, 'addParserOutputContent' ) ) {
|
||||
|
@ -155,10 +155,10 @@ class CiteOutput {
|
|||
|
||||
function genParser() {
|
||||
$this->mParser = new Parser;
|
||||
$this->mSpTitle = SpecialPage::getTitleFor( 'Cite' );
|
||||
$this->mSpTitle = SpecialPage::getTitleFor( 'CiteThisPage' );
|
||||
}
|
||||
|
||||
function CiteParse( $in, $argv ) {
|
||||
function citationTagParse( $in, $argv ) {
|
||||
$ret = $this->mParser->parse( $in, $this->mSpTitle, $this->mParserOptions, false );
|
||||
|
||||
return $ret->getText();
|
|
@ -1,451 +0,0 @@
|
|||
# Force the test runner to ensure the extension is loaded
|
||||
!! hooks
|
||||
ref
|
||||
references
|
||||
!! endhooks
|
||||
|
||||
!! test
|
||||
Simple <ref>, no <references/>
|
||||
!! input
|
||||
Wikipedia rocks!<ref>Proceeds of Rockology, vol. XXI</ref>
|
||||
!! result
|
||||
Wikipedia rocks!<sup id="cite_ref-1" class="reference"><a href="#cite_note-1">[1]</a></sup><ol class="references">
|
||||
<li id="cite_note-1"><span class="mw-cite-backlink"><a href="#cite_ref-1">↑</a></span> <span class="reference-text">Proceeds of Rockology, vol. XXI</span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
!! test
|
||||
Simple <ref>, with <references/>
|
||||
!! input
|
||||
Wikipedia rocks!<ref>Proceeds of Rockology, vol. XXI</ref>
|
||||
|
||||
<references/>
|
||||
!! result
|
||||
<p>Wikipedia rocks!<sup id="cite_ref-1" class="reference"><a href="#cite_note-1">[1]</a></sup>
|
||||
</p>
|
||||
<ol class="references">
|
||||
<li id="cite_note-1"><span class="mw-cite-backlink"><a href="#cite_ref-1">↑</a></span> <span class="reference-text">Proceeds of Rockology, vol. XXI</span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
|
||||
!! article
|
||||
Template:Simple template
|
||||
!! text
|
||||
A ''simple'' template.
|
||||
!! endarticle
|
||||
|
||||
|
||||
!! test
|
||||
<ref> with a simple template
|
||||
!! input
|
||||
Templating<ref>{{simple template}}</ref>
|
||||
|
||||
<references/>
|
||||
!! result
|
||||
<p>Templating<sup id="cite_ref-1" class="reference"><a href="#cite_note-1">[1]</a></sup>
|
||||
</p>
|
||||
<ol class="references">
|
||||
<li id="cite_note-1"><span class="mw-cite-backlink"><a href="#cite_ref-1">↑</a></span> <span class="reference-text">A <i>simple</i> template.</span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
!! test
|
||||
<ref> with a <nowiki>
|
||||
!! input
|
||||
Templating<ref><nowiki>{{simple template}}</nowiki></ref>
|
||||
|
||||
<references/>
|
||||
!! result
|
||||
<p>Templating<sup id="cite_ref-1" class="reference"><a href="#cite_note-1">[1]</a></sup>
|
||||
</p>
|
||||
<ol class="references">
|
||||
<li id="cite_note-1"><span class="mw-cite-backlink"><a href="#cite_ref-1">↑</a></span> <span class="reference-text">{{simple template}}</span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
|
||||
!! test
|
||||
<ref> in a <nowiki>
|
||||
!! input
|
||||
Templating<nowiki><ref>{{simple template}}</ref></nowiki>
|
||||
|
||||
<references/>
|
||||
!! result
|
||||
<p>Templating<ref>{{simple template}}</ref>
|
||||
</p><p><br />
|
||||
</p>
|
||||
!! end
|
||||
|
||||
!! test
|
||||
<ref> in a <!--comment-->
|
||||
!! input
|
||||
Templating<!--<ref>{{simple template}}</ref>-->
|
||||
|
||||
<references/>
|
||||
!! result
|
||||
<p>Templating
|
||||
</p><p><br />
|
||||
</p>
|
||||
!! end
|
||||
|
||||
!! test
|
||||
<!--comment--> in a <ref> (bug 5384)
|
||||
!! input
|
||||
Templating<ref>Text<!--comment--></ref>
|
||||
|
||||
<references/>
|
||||
!! result
|
||||
<p>Templating<sup id="cite_ref-1" class="reference"><a href="#cite_note-1">[1]</a></sup>
|
||||
</p>
|
||||
<ol class="references">
|
||||
<li id="cite_note-1"><span class="mw-cite-backlink"><a href="#cite_ref-1">↑</a></span> <span class="reference-text">Text</span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
!! test
|
||||
<references> after <gallery> (bug 6164)
|
||||
!! input
|
||||
<ref>one</ref>
|
||||
|
||||
<gallery>Image:Foobar.jpg</gallery>
|
||||
|
||||
<references/>
|
||||
!! result
|
||||
<p><sup id="cite_ref-1" class="reference"><a href="#cite_note-1">[1]</a></sup>
|
||||
</p>
|
||||
<ul class="gallery mw-gallery-traditional">
|
||||
<li class="gallerybox" style="width: 155px"><div style="width: 155px">
|
||||
<div class="thumb" style="width: 150px;"><div style="margin:68px auto;"><a href="/wiki/File:Foobar.jpg" class="image"><img alt="Foobar.jpg" src="http://example.com/images/thumb/3/3a/Foobar.jpg/120px-Foobar.jpg" width="120" height="14" /></a></div></div>
|
||||
<div class="gallerytext">
|
||||
</div>
|
||||
</div></li>
|
||||
</ul>
|
||||
<ol class="references">
|
||||
<li id="cite_note-1"><span class="mw-cite-backlink"><a href="#cite_ref-1">↑</a></span> <span class="reference-text">one</span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
!! test
|
||||
{{REVISIONID}} on page with <ref> (bug 6299)
|
||||
!! input
|
||||
{{REVISIONID}}<ref>elite</ref>
|
||||
!! result
|
||||
1337<sup id="cite_ref-1" class="reference"><a href="#cite_note-1">[1]</a></sup><ol class="references">
|
||||
<li id="cite_note-1"><span class="mw-cite-backlink"><a href="#cite_ref-1">↑</a></span> <span class="reference-text">elite</span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
!! test
|
||||
{{REVISIONID}} on page without <ref> (bug 6299 sanity check)
|
||||
!! input
|
||||
{{REVISIONID}}
|
||||
!! result
|
||||
<p>1337
|
||||
</p>
|
||||
!! end
|
||||
|
||||
!! test
|
||||
Blank ref followed by ref with content
|
||||
!! input
|
||||
<ref name="blank"/>
|
||||
|
||||
<ref name="blank">content</ref>
|
||||
|
||||
<references/>
|
||||
!! result
|
||||
<p><sup id="cite_ref-blank_1-0" class="reference"><a href="#cite_note-blank-1">[1]</a></sup>
|
||||
</p><p><sup id="cite_ref-blank_1-1" class="reference"><a href="#cite_note-blank-1">[1]</a></sup>
|
||||
</p>
|
||||
<ol class="references">
|
||||
<li id="cite_note-blank-1"><span class="mw-cite-backlink">↑ <sup><a href="#cite_ref-blank_1-0">1.0</a></sup> <sup><a href="#cite_ref-blank_1-1">1.1</a></sup></span> <span class="reference-text">content</span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
!! test
|
||||
Regression: non-blank ref "0" followed by ref with content
|
||||
!! input
|
||||
<ref name="blank">0</ref>
|
||||
|
||||
<ref name="blank">content</ref>
|
||||
|
||||
<references/>
|
||||
!! result
|
||||
<p><sup id="cite_ref-blank_1-0" class="reference"><a href="#cite_note-blank-1">[1]</a></sup>
|
||||
</p><p><sup id="cite_ref-blank_1-1" class="reference"><a href="#cite_note-blank-1">[1]</a></sup>
|
||||
</p>
|
||||
<ol class="references">
|
||||
<li id="cite_note-blank-1"><span class="mw-cite-backlink">↑ <sup><a href="#cite_ref-blank_1-0">1.0</a></sup> <sup><a href="#cite_ref-blank_1-1">1.1</a></sup></span> <span class="reference-text">0</span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
!! test
|
||||
Regression sanity check: non-blank ref "1" followed by ref with content
|
||||
!! input
|
||||
<ref name="blank">1</ref>
|
||||
|
||||
<ref name="blank">content</ref>
|
||||
|
||||
<references/>
|
||||
!! result
|
||||
<p><sup id="cite_ref-blank_1-0" class="reference"><a href="#cite_note-blank-1">[1]</a></sup>
|
||||
</p><p><sup id="cite_ref-blank_1-1" class="reference"><a href="#cite_note-blank-1">[1]</a></sup>
|
||||
</p>
|
||||
<ol class="references">
|
||||
<li id="cite_note-blank-1"><span class="mw-cite-backlink">↑ <sup><a href="#cite_ref-blank_1-0">1.0</a></sup> <sup><a href="#cite_ref-blank_1-1">1.1</a></sup></span> <span class="reference-text">1</span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
!! test
|
||||
Ref names containing a number
|
||||
!! input
|
||||
<ref name="test123test">One</ref>
|
||||
<ref name="123test">Two</ref>
|
||||
<ref name="test123">Three</ref>
|
||||
|
||||
<references />
|
||||
!! result
|
||||
<p><sup id="cite_ref-test123test_1-0" class="reference"><a href="#cite_note-test123test-1">[1]</a></sup>
|
||||
<sup id="cite_ref-123test_2-0" class="reference"><a href="#cite_note-123test-2">[2]</a></sup>
|
||||
<sup id="cite_ref-test123_3-0" class="reference"><a href="#cite_note-test123-3">[3]</a></sup>
|
||||
</p>
|
||||
<ol class="references">
|
||||
<li id="cite_note-test123test-1"><span class="mw-cite-backlink"><a href="#cite_ref-test123test_1-0">↑</a></span> <span class="reference-text">One</span>
|
||||
</li>
|
||||
<li id="cite_note-123test-2"><span class="mw-cite-backlink"><a href="#cite_ref-123test_2-0">↑</a></span> <span class="reference-text">Two</span>
|
||||
</li>
|
||||
<li id="cite_note-test123-3"><span class="mw-cite-backlink"><a href="#cite_ref-test123_3-0">↑</a></span> <span class="reference-text">Three</span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
!! test
|
||||
Erroneous refs
|
||||
!! input
|
||||
<ref name="0">Zero</ref>
|
||||
|
||||
<ref>Also zero, but differently! (Normal ref)</ref>
|
||||
|
||||
<ref />
|
||||
|
||||
<ref name="foo" name="bar" />
|
||||
|
||||
<ref name="blankwithnoreference" />
|
||||
|
||||
<references name="quasit" />
|
||||
|
||||
<references />
|
||||
!! result
|
||||
<p><strong class="error mw-ext-cite-error">Cite error: Invalid <code><ref></code> tag;
|
||||
name cannot be a simple integer. Use a descriptive title</strong>
|
||||
</p><p><sup id="cite_ref-1" class="reference"><a href="#cite_note-1">[1]</a></sup>
|
||||
</p><p><strong class="error mw-ext-cite-error">Cite error: Invalid <code><ref></code> tag;
|
||||
refs with no content must have a name</strong>
|
||||
</p><p><sup id="cite_ref-bar_2-0" class="reference"><a href="#cite_note-bar-2">[2]</a></sup>
|
||||
</p><p><sup id="cite_ref-blankwithnoreference_3-0" class="reference"><a href="#cite_note-blankwithnoreference-3">[3]</a></sup>
|
||||
</p><p><strong class="error mw-ext-cite-error">Cite error: Invalid <code><references></code> tag;
|
||||
parameter "group" is allowed only.
|
||||
Use <code><references /></code>, or <code><references group="..." /></code></strong>
|
||||
</p>
|
||||
<ol class="references">
|
||||
<li id="cite_note-1"><span class="mw-cite-backlink"><a href="#cite_ref-1">↑</a></span> <span class="reference-text">Also zero, but differently! (Normal ref)</span>
|
||||
</li>
|
||||
<li id="cite_note-bar"><span class="mw-cite-backlink"><a href="#cite_ref-bar_0">↑</a></span> <strong class="error mw-ext-cite-error">Cite error: Invalid <code><ref></code> tag;
|
||||
no text was provided for refs named <code>bar</code></strong></li>
|
||||
<li id="cite_note-blankwithnoreference"><span class="mw-cite-backlink"><a href="#cite_ref-blankwithnoreference_0">↑</a></span> <strong class="error mw-ext-cite-error">Cite error: Invalid <code><ref></code> tag;
|
||||
no text was provided for refs named <code>blankwithnoreference</code></strong></li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
|
||||
!! test
|
||||
Simple <ref>, with <references/> in group
|
||||
!! input
|
||||
Wikipedia rocks!<ref>Proceeds of Rockology, vol. XXI</ref>
|
||||
Wikipedia rocks!<ref group=note>Proceeds of Rockology, vol. XXI</ref>
|
||||
|
||||
<references/>
|
||||
<references group=note/>
|
||||
!! result
|
||||
<p>Wikipedia rocks!<sup id="cite_ref-1" class="reference"><a href="#cite_note-1">[1]</a></sup>
|
||||
Wikipedia rocks!<sup id="cite_ref-2" class="reference"><a href="#cite_note-2">[note 1]</a></sup>
|
||||
</p>
|
||||
<ol class="references">
|
||||
<li id="cite_note-1"><span class="mw-cite-backlink"><a href="#cite_ref-1">↑</a></span> <span class="reference-text">Proceeds of Rockology, vol. XXI</span>
|
||||
</li>
|
||||
</ol>
|
||||
<ol class="references">
|
||||
<li id="cite_note-2"><span class="mw-cite-backlink"><a href="#cite_ref-2">↑</a></span> <span class="reference-text">Proceeds of Rockology, vol. XXI</span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
!! test
|
||||
Simple <ref>, with <references/> in group, with groupname in chinese
|
||||
!! input
|
||||
AAA<ref group="参">ref a</ref>BBB<ref group="注">note b</ref>CCC<ref group="参">ref c</ref>
|
||||
|
||||
;refs
|
||||
<references group="参" />
|
||||
;notes
|
||||
<references group="注" />
|
||||
!! result
|
||||
<p>AAA<sup id="cite_ref-1" class="reference"><a href="#cite_note-1">[参 1]</a></sup>BBB<sup id="cite_ref-2" class="reference"><a href="#cite_note-2">[注 1]</a></sup>CCC<sup id="cite_ref-3" class="reference"><a href="#cite_note-3">[参 2]</a></sup>
|
||||
</p>
|
||||
<dl><dt>refs</dt></dl>
|
||||
<ol class="references">
|
||||
<li id="cite_note-1"><span class="mw-cite-backlink"><a href="#cite_ref-1">↑</a></span> <span class="reference-text">ref a</span>
|
||||
</li>
|
||||
<li id="cite_note-3"><span class="mw-cite-backlink"><a href="#cite_ref-3">↑</a></span> <span class="reference-text">ref c</span>
|
||||
</li>
|
||||
</ol>
|
||||
<dl><dt>notes</dt></dl>
|
||||
<ol class="references">
|
||||
<li id="cite_note-2"><span class="mw-cite-backlink"><a href="#cite_ref-2">↑</a></span> <span class="reference-text">note b</span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
!! test
|
||||
<ref> defined in <references>
|
||||
!! input
|
||||
<ref name="foo"/>
|
||||
|
||||
<references>
|
||||
<ref name="foo">BAR</ref>
|
||||
</references>
|
||||
!! result
|
||||
<p><sup id="cite_ref-foo_1-0" class="reference"><a href="#cite_note-foo-1">[1]</a></sup>
|
||||
</p>
|
||||
<ol class="references">
|
||||
<li id="cite_note-foo-1"><span class="mw-cite-backlink"><a href="#cite_ref-foo_1-0">↑</a></span> <span class="reference-text">BAR</span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
!! test
|
||||
<ref> defined in <references> called with #tag
|
||||
!! input
|
||||
<ref name="foo"/>
|
||||
|
||||
{{#tag:references|
|
||||
<ref name="foo">BAR</ref>
|
||||
}}
|
||||
!! result
|
||||
<p><sup id="cite_ref-foo_1-0" class="reference"><a href="#cite_note-foo-1">[1]</a></sup>
|
||||
</p>
|
||||
<ol class="references">
|
||||
<li id="cite_note-foo-1"><span class="mw-cite-backlink"><a href="#cite_ref-foo_1-0">↑</a></span> <span class="reference-text">BAR</span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
!! test
|
||||
<ref> defined in <references> error conditions
|
||||
!! input
|
||||
<ref name="foo" group="2"/>
|
||||
|
||||
<references group="2">
|
||||
<ref name="foo"/>
|
||||
<ref name="unused">BAR</ref>
|
||||
<ref name="foo" group="1">bad group</ref>
|
||||
<ref>BAR BAR</ref>
|
||||
</references>
|
||||
!! result
|
||||
<p><sup id="cite_ref-foo_1-0" class="reference"><a href="#cite_note-foo-1">[2 1]</a></sup>
|
||||
</p>
|
||||
<ol class="references">
|
||||
<li id="cite_note-foo"><span class="mw-cite-backlink"><a href="#cite_ref-foo_0">↑</a></span> <strong class="error mw-ext-cite-error">Cite error: Invalid <code><ref></code> tag;
|
||||
no text was provided for refs named <code>foo</code></strong></li>
|
||||
</ol>
|
||||
<p><strong class="error mw-ext-cite-error">Cite error: <code><ref></code> tag with name "unused" defined in <code><references></code> is not used in prior text.</strong><br />
|
||||
<strong class="error mw-ext-cite-error">Cite error: <code><ref></code> tag in <code><references></code> has conflicting group attribute "1".</strong><br />
|
||||
<strong class="error mw-ext-cite-error">Cite error: <code><ref></code> tag defined in <code><references></code> has no name attribute.</strong>
|
||||
</p>
|
||||
!! end
|
||||
|
||||
!! article
|
||||
MediaWiki:cite_link_label_group-klingon
|
||||
!! text
|
||||
wa' cha' wej loS vagh jav Soch chorgh Hut wa'maH
|
||||
!! endarticle
|
||||
|
||||
!! test
|
||||
<ref> with custom group link
|
||||
!! input
|
||||
Wikipedia rocks!<ref group="klingon">Proceeds of Rockology, vol. XXI</ref>
|
||||
|
||||
<references group="klingon"/>
|
||||
!! result
|
||||
<p>Wikipedia rocks!<sup id="cite_ref-1" class="reference"><a href="#cite_note-1">[wa']</a></sup>
|
||||
</p>
|
||||
<ol class="references">
|
||||
<li id="cite_note-1"><span class="mw-cite-backlink"><a href="#cite_ref-1">↑</a></span> <span class="reference-text">Proceeds of Rockology, vol. XXI</span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
!! test
|
||||
Bug 31374 regression check: nested strip items
|
||||
!! input
|
||||
{{#tag:ref|note<ref>reference</ref>|group=Note}}
|
||||
<references group=Note />
|
||||
<references />
|
||||
!! result
|
||||
<p><sup id="cite_ref-2" class="reference"><a href="#cite_note-2">[Note 1]</a></sup>
|
||||
</p>
|
||||
<ol class="references">
|
||||
<li id="cite_note-2"><span class="mw-cite-backlink"><a href="#cite_ref-2">↑</a></span> <span class="reference-text">note<sup id="cite_ref-1" class="reference"><a href="#cite_note-1">[1]</a></sup></span>
|
||||
</li>
|
||||
</ol>
|
||||
<ol class="references">
|
||||
<li id="cite_note-1"><span class="mw-cite-backlink"><a href="#cite_ref-1">↑</a></span> <span class="reference-text">reference</span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
!! test
|
||||
Bug 13073 regression check: wrapped <references>
|
||||
!! input
|
||||
<ref>
|
||||
foo
|
||||
</ref>
|
||||
<div><references /></div>
|
||||
!! result
|
||||
<p><sup id="cite_ref-1" class="reference"><a href="#cite_note-1">[1]</a></sup>
|
||||
</p>
|
||||
<div><ol class="references">
|
||||
<li id="cite_note-1"><span class="mw-cite-backlink"><a href="#cite_ref-1">↑</a></span> <span class="reference-text">
|
||||
foo</span>
|
||||
</li>
|
||||
</ol></div>
|
||||
|
||||
!! end
|
|
@ -4,5 +4,5 @@
|
|||
"Si Gam Acèh"
|
||||
]
|
||||
},
|
||||
"cite_article_link": "Cok ôn nyoë"
|
||||
"citethispage-link": "Cok ôn nyoë"
|
||||
}
|
14
i18n/af.json
Normal file
14
i18n/af.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Naudefj",
|
||||
"SPQRobin"
|
||||
]
|
||||
},
|
||||
"citethispage-desc": "Maak 'n [[Special:Cite|spesiale bladsy vir sitasie]], en 'n skakel daarna in hulpmiddels beskikbaar",
|
||||
"citethispage-link": "Haal dié blad aan",
|
||||
"tooltip-citethispage": "Inligting oor hoe u hierdie bladsy kan citeer",
|
||||
"citethispage": "Aanhaling",
|
||||
"citethispage-change-target": "Bladsy:",
|
||||
"citethispage-change-submit": "Aanhaling"
|
||||
}
|
12
i18n/am.json
Normal file
12
i18n/am.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Codex Sinaiticus",
|
||||
"Teferra"
|
||||
]
|
||||
},
|
||||
"citethispage-link": "ይህንን ገጽ አጣቅስ",
|
||||
"citethispage": "መጥቀሻ",
|
||||
"citethispage-change-target": "አርዕስት፦",
|
||||
"citethispage-change-submit": "ዝርዝሮች ይታዩ"
|
||||
}
|
13
i18n/an.json
Normal file
13
i18n/an.json
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Juanpabl"
|
||||
]
|
||||
},
|
||||
"citethispage-desc": "Adibe un vinclo y una pachina especial de [[Special:Cite|cita]]",
|
||||
"citethispage-link": "Citar ista pachina",
|
||||
"tooltip-citethispage": "Información de como citar ista pachina",
|
||||
"citethispage": "Citar",
|
||||
"citethispage-change-target": "Pachina:",
|
||||
"citethispage-change-submit": "Citar"
|
||||
}
|
15
i18n/ar.json
Normal file
15
i18n/ar.json
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Meno25",
|
||||
"OsamaK"
|
||||
]
|
||||
},
|
||||
"citethispage-desc": "يضيف صفحة [[Special:Cite|استشهاد]] خاصة ووصلة صندوق أدوات",
|
||||
"citethispage-link": "استشهد بهذه الصفحة",
|
||||
"tooltip-citethispage": "معلومات عن كيفية الاستشهاد بالصفحة",
|
||||
"citethispage": "استشهاد",
|
||||
"citethispage-change-target": "الصفحة:",
|
||||
"citethispage-change-submit": "استشهاد",
|
||||
"citethispage-content": "__NOTOC__\n<div class=\"mw-specialCiteThisPage-bibliographic\">\n\n== تفاصيل التأليف ل{{FULLPAGENAME}} ==\n\n* اسم الصفحة: {{FULLPAGENAME}}\n* المؤلف: مساهمو {{SITENAME}}\n* الناشر: ''{{SITENAME}}, {{int:sitesubtitle}}''.\n* تاريخ آخر مراجعة: {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} {{CURRENTTIME}} UTC\n* تاريخ الاسترجاع: <citation>{{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} {{CURRENTTIME}} UTC</citation>\n* وصلة دائمة: {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\n* رقم نسخة الصفحة: {{REVISIONID}}\n\n</div>\n<div class=\"plainlinks mw-specialCiteThisPage-styles\">\n\n== أنماط الاستشهاد ل{{FULLPAGENAME}} ==\n\n=== [[APA style|نمط APA]] ===\n{{FULLPAGENAME}}. ({{CURRENTYEAR}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}). ''{{SITENAME}}, {{int:sitesubtitle}}''. Retrieved <citation>{{CURRENTTIME}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation> from {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}.\n\n=== [[The MLA style manual|نمط MLA]] ===\n\"{{FULLPAGENAME}}.\" ''{{SITENAME}}, {{int:sitesubtitle}}''. {{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC. <citation>{{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}}</citation> <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}>.\n\n=== [[MHRA Style Guide|نمط MHRA]] ===\n{{SITENAME}} contributors, '{{FULLPAGENAME}}', ''{{SITENAME}}, {{int:sitesubtitle}},'' {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC, <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}> [accessed <citation>{{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}</citation>]\n\n=== [[The Chicago Manual of Style|نمط شيكاغو]] ===\n{{SITENAME}} contributors, \"{{FULLPAGENAME}},\" ''{{SITENAME}}, {{int:sitesubtitle}},'' {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (accessed <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>).\n\n=== [[Council of Science Editors|نمط CBE/CSE]] ===\n{{SITENAME}} contributors. {{FULLPAGENAME}} [Internet]. {{SITENAME}}, {{int:sitesubtitle}}; {{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}, {{CURRENTTIME}} UTC [cited <citation>{{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}</citation>]. Available from:\n{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}.\n\n=== [[Bluebook|نمط Bluebook]] ===\n{{FULLPAGENAME}}, {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (last visited <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>).\n\n=== مدخلة [[BibTeX]] ===\n\n @misc{ wiki:xxx,\n author = \"{{SITENAME}}\",\n title = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\",\n year = \"{{CURRENTYEAR}}\",\n url = \"{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\",\n note = \"[Online; accessed <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\"\n }\n\nعند استخدام وصلة مجموعة [[LaTeX]] (<code>\\usepackage{url}</code> في مكان ما) مما يؤدي إى إعطاء عناوين ويب مهيأة بشكل أفضل، التالي ربما يكون مفضلا:\n\n @misc{ wiki:xxx,\n author = \"{{SITENAME}}\",\n title = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\",\n year = \"{{CURRENTYEAR}}\",\n url = \"'''\\url{'''{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}'''}'''\",\n note = \"[Online; accessed <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\"\n }\n\n\n</div> <!--closing div for \"plainlinks\"-->"
|
||||
}
|
13
i18n/arc.json
Normal file
13
i18n/arc.json
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Basharh"
|
||||
]
|
||||
},
|
||||
"citethispage-link": "ܡܣܗܕ ܥܠ ܗܕܐ ܦܐܬܐ",
|
||||
"tooltip-citethispage": "ܝܕ̈ܥܬܐ ܥܠ ܐܝܟܢܐ ܕܡܣܗܕ ܥܠ ܦܐܬܐ",
|
||||
"citethispage": "ܡܣܗܕ",
|
||||
"citethispage-change-target": "ܦܐܬܐ:",
|
||||
"citethispage-change-submit": "ܡܣܗܕ",
|
||||
"citethispage-content": "__NOTOC__\n<div class=\"mw-specialCiteThisPage-bibliographic\">\n\n== ܐܪ̈ܝܟܬܐ ܕܦܘܓܪܦܐ ܕ {{FULLPAGENAME}} ==\n\n* ܫܡܐ ܕܦܐܬܐ: {{FULLPAGENAME}}\n* ܣܝܘܡܐ: ܫܘܬܦܢ̈ܐ ܕ {{SITENAME}}\n* ܡܦܪܣܐ: ''{{SITENAME}}, {{int:sitesubtitle}}''.\n* ܣܝܩܘܡܐ ܕܬܢܝܬܐ ܐܚܪܝܬܐ: {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} {{CURRENTTIME}} UTC\n* ܣܝܩܘܡܐ ܕܡܬܦܢܝܢܘܬܐ: <citation>{{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} {{CURRENTTIME}} UTC</citation>\n* ܐܣܘܪܐ ܦܝܘܫܐ: {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\n* ܗܝܝܘܬܐ ܕܨܚܚܐ ܕܦܐܬܐ: {{REVISIONID}}\n\n</div>\n<div class=\"plainlinks mw-specialCiteThisPage-styles\">\n\n== ܙܢܝ̈ܐ ܕܡܣܗܕܬܐ ܕ {{FULLPAGENAME}} ==\n\n=== [[ܙܢܐ ܕ APA]] ===\n{{FULLPAGENAME}}. ({{CURRENTYEAR}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}). ''{{SITENAME}}, {{int:sitesubtitle}}''. Retrieved <citation>{{CURRENTTIME}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation> from {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}.\n\n=== [[The MLA style manual|ܙܢܐ ܕ MLA]] ===\n\"{{FULLPAGENAME}}.\" ''{{SITENAME}}, {{int:sitesubtitle}}''. {{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC. <citation>{{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}}</citation> <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}>.\n\n=== [[MHRA Style Guide|ܙܢܐ ܕ MHRA]] ===\n{{SITENAME}} contributors, '{{FULLPAGENAME}}', ''{{SITENAME}}, {{int:sitesubtitle}},'' {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC, <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}> [accessed <citation>{{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}</citation>]\n\n=== [[The Chicago Manual of Style| ܙܢܐ ܕ Chicago]] ===\n{{SITENAME}} contributors, \"{{FULLPAGENAME}},\" ''{{SITENAME}}, {{int:sitesubtitle}},'' {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (accessed <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>).\n\n=== [[Council of Science Editors|ܙܢܐ ܕ CBE/CSE]] ===\n{{SITENAME}} contributors. {{FULLPAGENAME}} [Internet]. {{SITENAME}}, {{int:sitesubtitle}}; {{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}, {{CURRENTTIME}} UTC [cited <citation>{{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}</citation>]. Available from:\n{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}.\n\n=== [[Bluebook|ܙܢܐ ܕ Bluebook]] ===\n{{FULLPAGENAME}}, {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (last visited <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>).\n\n=== ܡܥܠܬܐ ܕ [[BibTeX]] ===\n\n @misc{ wiki:xxx,\n author = \"{{SITENAME}}\",\n title = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\",\n year = \"{{CURRENTYEAR}}\",\n url = \"{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\",\n note = \"[Online; accessed <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\"\n }\n\nWhen using the [[LaTeX]] package url (<code>\\usepackage{url}</code> somewhere in the preamble) which tends to give much more nicely formatted web addresses, the following may be preferred:\n\n @misc{ wiki:xxx,\n author = \"{{SITENAME}}\",\n title = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\",\n year = \"{{CURRENTYEAR}}\",\n url = \"'''\\url{'''{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}'''}'''\",\n note = \"[Online; accessed <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\"\n }\n\n\n</div> <!--closing div for \"plainlinks\"-->"
|
||||
}
|
14
i18n/arn.json
Normal file
14
i18n/arn.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Kaniw",
|
||||
"Remember the dot"
|
||||
]
|
||||
},
|
||||
"citethispage-desc": "Yomvmi kiñe wicu aztapvl ñi [[Special:Cite|konvmpan]] mew ka jasun kvzawpeyvm mew",
|
||||
"citethispage-link": "Konvmpape faci xoy",
|
||||
"tooltip-citethispage": "Cumley konvmpageay faci xoy",
|
||||
"citethispage": "Konvmpan",
|
||||
"citethispage-change-target": "Aztapvl:",
|
||||
"citethispage-change-submit": "Konvmpan"
|
||||
}
|
14
i18n/arz.json
Normal file
14
i18n/arz.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Ghaly",
|
||||
"Ramsis II"
|
||||
]
|
||||
},
|
||||
"citethispage-desc": "بيضيف [[Special:Cite|مرجع]] صفحة مخصوصة ولينك لصندوء أدوات",
|
||||
"citethispage-link": "استشهد بالصفحة دى",
|
||||
"citethispage": "مرجع",
|
||||
"citethispage-change-target": "الصفحه:",
|
||||
"citethispage-change-submit": "مرجع",
|
||||
"citethispage-content": "__NOTOC__\n<div class=\"mw-specialCiteThisPage-bibliographic\">\n\n== تفاصيل التأليف ل{{FULLPAGENAME}} ==\n\n* اسم الصفحة: {{FULLPAGENAME}}\n* المؤلف: مساهمو {{SITENAME}}\n* الناشر: ''{{SITENAME}}, {{int:sitesubtitle}}''.\n* تاريخ آخر مراجعة: {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} {{CURRENTTIME}} UTC\n* تاريخ الاسترجاع: <citation>{{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} {{CURRENTTIME}} UTC</citation>\n* وصلة دائمة: {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\n* رقم نسخة الصفحة: {{REVISIONID}}\n\n</div>\n<div class=\"plainlinks mw-specialCiteThisPage-styles\">\n\n\n== أنماط الاستشهاد ل{{FULLPAGENAME}} ==\n\n=== [[APA style|نمط APA]] ===\n{{FULLPAGENAME}}. ({{CURRENTYEAR}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}). ''{{SITENAME}}, {{int:sitesubtitle}}''. Retrieved <citation>{{CURRENTTIME}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation> from {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}.\n\n=== [[The MLA style manual|نمط MLA]] ===\n\"{{FULLPAGENAME}}.\" ''{{SITENAME}}, {{int:sitesubtitle}}''. {{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC. <citation>{{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}}</citation> <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}>.\n\n=== [[MHRA Style Guide|نمط MHRA]] ===\n{{SITENAME}} contributors, '{{FULLPAGENAME}}', ''{{SITENAME}}, {{int:sitesubtitle}},'' {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC, <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}> [accessed <citation>{{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}</citation>]\n\n=== [[The Chicago Manual of Style|نمط شيكاغو]] ===\n{{SITENAME}} contributors, \"{{FULLPAGENAME}},\" ''{{SITENAME}}, {{int:sitesubtitle}},'' {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (accessed <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>).\n\n=== [[Council of Science Editors|نمط CBE/CSE]] ===\n{{SITENAME}} contributors. {{FULLPAGENAME}} [Internet]. {{SITENAME}}, {{int:sitesubtitle}}; {{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}, {{CURRENTTIME}} UTC [cited <citation>{{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}</citation>]. Available from:\n{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}.\n\n=== [[Bluebook|نمط Bluebook]] ===\n{{FULLPAGENAME}}, {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (last visited <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>).\n\n=== مدخلة [[BibTeX]] ===\n\n @misc{ wiki:xxx,\n author = \"{{SITENAME}}\",\n title = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\",\n year = \"{{CURRENTYEAR}}\",\n url = \"{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\",\n note = \"[Online; accessed <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\"\n }\n\nعند استخدام وصلة مجموعة [[LaTeX]] (<code>\\usepackage{url}</code> في مكان ما) مما يؤدى إلى إعطاء عناوين ويب مهيأة بشكل أفضل، التالى ربما يكون مفضلا:\n\n @misc{ wiki:xxx,\n author = \"{{SITENAME}}\",\n title = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\",\n year = \"{{CURRENTYEAR}}\",\n url = \"'''\\url{'''{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}'''}'''\",\n note = \"[Online; accessed <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\"\n }\n\n\n</div> <!--closing div for \"plainlinks\"-->"
|
||||
}
|
15
i18n/as.json
Normal file
15
i18n/as.json
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Bishnu Saikia",
|
||||
"Gitartha.bordoloi"
|
||||
]
|
||||
},
|
||||
"citethispage-desc": "এটা [[Special:Cite|উদ্ধৃতি]] পৃষ্ঠা আৰু এটা সা-সৰঞ্জাম লিংক যোগ কৰে",
|
||||
"citethispage-link": "এই পৃষ্ঠাৰ উদ্ধৃতি দিয়ক",
|
||||
"tooltip-citethispage": "এই পৃষ্ঠাখনৰ উদ্ধৃতি দিয়াৰ বিষয়ে তথ্য",
|
||||
"citethispage": "↓উদ্ধৃত",
|
||||
"citethispage-change-target": "পৃষ্ঠা:",
|
||||
"citethispage-change-submit": "↓উদ্ধৃত",
|
||||
"citethispage-content": "__NOTOC__\n<div class=\"mw-specialCiteThisPage-bibliographic\">\n\n== {{FULLPAGENAME}} জীৱনীমূলক তথ্য ==\n\n* পৃষ্ঠাৰ নাম: {{FULLPAGENAME}}\n* লিখক: {{SITENAME}} contributors\n* প্ৰকাশক: ''{{SITENAME}}, {{int:sitesubtitle}}''.\n* অন্তিম সংস্কৰণৰ তাৰিখ: {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} {{CURRENTTIME}} ইউ.টি.ছি.\n* আহৰণৰ তাৰিখ: <citation>{{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} {{CURRENTTIME}} UTC</citation>\n* স্থায়ী ইউ.আৰ.এল.: {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\n* পৃষ্ঠাৰ সংস্কৰণৰ আই.ডি.: {{REVISIONID}}\n\n</div>\n<div class=\"plainlinks mw-specialCiteThisPage-styles\">\n\n== {{FULLPAGENAME}}ৰ বাবে উদ্ধৃতি সজ্জা ==\n\n=== [[APA style|APA সজ্জা]] ===\n{{FULLPAGENAME}}. ({{CURRENTYEAR}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}). ''{{SITENAME}}, {{int:sitesubtitle}}''. আহৰণ <citation>{{CURRENTTIME}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation> পৰা {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}.\n\n=== [[The MLA style manual|MLA সজ্জা]] ===\n\"{{FULLPAGENAME}}.\" ''{{SITENAME}}, {{int:sitesubtitle}}''. {{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC. <citation>{{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}}</citation> <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}>.\n\n=== [[MHRA Style Guide|MHRA সজ্জা]] ===\n{{SITENAME}} বৰঙনিদাতাসকল, '{{FULLPAGENAME}}', ''{{SITENAME}}, {{int:sitesubtitle}},'' {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC, <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}> [accessed <citation>{{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}</citation>]\n\n=== [[The Chicago Manual of Style|চিকাগো সজ্জা]] ===\n{{SITENAME}} বৰঙনিদাতাসকল, \"{{FULLPAGENAME}},\" ''{{SITENAME}}, {{int:sitesubtitle}},'' {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (আহৰণ <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>).\n\n=== [[Council of Science Editors|CBE/CSE সজ্জা]] ===\n{{SITENAME}} বৰঙনিদাতাসকল. {{FULLPAGENAME}} [ইণ্টাৰনেট]. {{SITENAME}}, {{int:sitesubtitle}}; {{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}, {{CURRENTTIME}} UTC [উদ্ধৃত <citation>{{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}</citation>]. উপলদ্ধ :\n{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}.\n\n=== [[Bluebook|Bluebook সজ্জা]] ===\n{{FULLPAGENAME}}, {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (অন্তিম পৰিদৰ্শন <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>).\n\n=== [[BibTeX]] entry ===\n\n @misc{ wiki:xxx,\n author = \"{{SITENAME}}\",\n title = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\",\n year = \"{{CURRENTYEAR}}\",\n url = \"{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\",\n note = \"[অনলাইন; আহৰিত <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\"\n }\n\nWhen using the [[LaTeX]] package url (<code>\\usepackage{url}</code> somewhere in the preamble) which tends to give much more nicely formatted web addresses, the following may be preferred:\n\n @misc{ wiki:xxx,\n author = \"{{SITENAME}}\",\n title = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\",\n year = \"{{CURRENTYEAR}}\",\n url = \"'''\\url{'''{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}'''}'''\",\n note = \"[অনলাইন; আহৰিত <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\"\n }\n\n\n</div> <!--closing div for \"plainlinks\"-->"
|
||||
}
|
15
i18n/ast.json
Normal file
15
i18n/ast.json
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Esbardu",
|
||||
"Xuacu"
|
||||
]
|
||||
},
|
||||
"citethispage-desc": "Añade una páxina especial de [[Special:Cite|cites]] y un enllaz a la caxa de ferramientes",
|
||||
"citethispage-link": "Citar esta páxina",
|
||||
"tooltip-citethispage": "Información tocante a cómo citar esta páxina",
|
||||
"citethispage": "Citar",
|
||||
"citethispage-change-target": "Páxina:",
|
||||
"citethispage-change-submit": "Citar",
|
||||
"citethispage-content": "__NOTOC__\n<div class=\"mw-specialCiteThisPage-bibliographic\">\n\n== Datos bibliográficos pa {{FULLPAGENAME}} ==\n\n* Nome de la páxina: {{FULLPAGENAME}}\n* Autor: collaboradores de {{SITENAME}}\n* Editor: ''{{SITENAME}}, {{int:sitesubtitle}}''.\n* Data de la última revisión: {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} {{CURRENTTIME}} UTC\n* Data na que s'algamó: <citation>{{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} {{CURRENTTIME}} UTC</citation>\n* Dirección URL permanente: {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\n* ID de versión de la páxina: {{REVISIONID}}\n\n</div>\n<div class=\"plainlinks mw-specialCiteThisPage-styles\">\n\n== Estilu de cites pa {{FULLPAGENAME}} ==\n\n=== [[APA style|Estilu APA]] ===\n{{FULLPAGENAME}}. ({{CURRENTYEAR}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}). ''{{SITENAME}}, {{int:sitesubtitle}}''. Consultáu el <citation>{{CURRENTTIME}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation> en {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}.\n\n=== [[The MLA style manual|Estilu MLA]] ===\n\"{{FULLPAGENAME}}.\" ''{{SITENAME}}, {{int:sitesubtitle}}''. {{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC. <citation>{{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}}</citation> <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}>.\n\n=== [[MHRA Style Guide|Estilu MHRA]] ===\nCollaboradores de {{SITENAME}}, '{{FULLPAGENAME}}', ''{{SITENAME}}, {{int:sitesubtitle}},'' {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC, <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}> [consultáu el <citation>{{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}</citation>]\n\n=== [[The Chicago Manual of Style|Estilu Chicago]] ===\nCollaboradores de {{SITENAME}}, \"{{FULLPAGENAME}},\" ''{{SITENAME}}, {{int:sitesubtitle}},'' {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (consultáu el <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>).\n\n=== [[Council of Science Editors|Estilu CBE/CSE]] ===\nCollaboradores de {{SITENAME}}. {{FULLPAGENAME}} [Internet]. {{SITENAME}}, {{int:sitesubtitle}}; {{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}, {{CURRENTTIME}} UTC [citáu el <citation>{{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}</citation>]. Disponible en:\n{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}.\n\n=== [[Bluebook|Estilu Bluebook]] ===\n{{FULLPAGENAME}}, {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (última visita: <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>).\n\n=== Entrada [[BibTeX]] ===\n\n @misc{ wiki:xxx,\n autor = \"{{SITENAME}}\",\n títulu = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\",\n añu = \"{{CURRENTYEAR}}\",\n url = \"{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\",\n nota = \"[En llinia; consultáu el <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\"\n }\n\nCuando s'utiliza la dirección URL del paquete [[LaTeX]] (<code>\\usepackage{url}</code> n'algún llugar del preámbulu) que tiende a dar direiciones web con meyor formatu, pue ser preferible lo siguiente:\n\n @misc{ wiki:xxx,\n autor = \"{{SITENAME}}\",\n títulu = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\",\n añu = \"{{CURRENTYEAR}}\",\n url = \"'''\\url{'''{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}'''}'''\",\n nota = \"[En llinia; consultáu el <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\"\n }\n\n\n</div> <!--zarrando'l div de \"plainlinks\"-->"
|
||||
}
|
|
@ -4,5 +4,5 @@
|
|||
"Amikeco"
|
||||
]
|
||||
},
|
||||
"cite_article_link": "Гьумер рехсезе"
|
||||
"citethispage-link": "Гьумер рехсезе"
|
||||
}
|
10
i18n/az.json
Normal file
10
i18n/az.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Cekli829"
|
||||
]
|
||||
},
|
||||
"citethispage": "Sayt",
|
||||
"citethispage-change-target": "Səhifə:",
|
||||
"citethispage-change-submit": "Sayt"
|
||||
}
|
15
i18n/azb.json
Normal file
15
i18n/azb.json
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Amir a57",
|
||||
"Mousa"
|
||||
]
|
||||
},
|
||||
"citethispage-desc": "بیر اؤزل [[Special:Cite|آلینتی]] صحیفهسی و آراج-قوتوسو باغلانتیسی آرتیرار",
|
||||
"citethispage-link": "بو صحیفهدن آلینتی گؤتور",
|
||||
"tooltip-citethispage": "بو صحیفهدن نئجه آلینتی گؤتورمک اوچون بیلگیلر",
|
||||
"citethispage": "سایت",
|
||||
"citethispage-change-target": "صحیفه:",
|
||||
"citethispage-change-submit": "سایت",
|
||||
"citethispage-content": "__NOTOC__\n<div class=\"mw-specialCiteThisPage-bibliographic\">\n\n== {{FULLPAGENAME}} اوچون قایناقجالیق بیلگیلری ==\n\n* صحیفه آدی: {{FULLPAGENAME}}\n* یارادیجی: {{SITENAME}} ایستیفادهچیلری\n* نشر ائدن: ''{{SITENAME}}، {{int:sitesubtitle}}''.\n* سون نوسخهنین تاریخی: {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} {{CURRENTTIME}} UTC\n* گؤتورن تاریخ: <citation>{{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} {{CURRENTTIME}} UTC</citation>\n* قالیجی آدرس: {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\n* صحیفه نوسخه بلیردنی: {{REVISIONID}}\n\n</div>\n<div class=\"plainlinks mw-specialCiteThisPage-styles\">\n\n== {{FULLPAGENAME}} اوچون آلینتی بیچیملری ==\n\n=== [[APA بیچیمی]] ===\n{{FULLPAGENAME}}. ({{CURRENTYEAR}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}). ''{{SITENAME}}, {{int:sitesubtitle}}''. Retrieved <citation>{{CURRENTTIME}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation> from {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}.\n\n=== [[MLA بیچیم بیلگیلری|MLA بیچیمی]] ===\n\"{{FULLPAGENAME}}.\" ''{{SITENAME}}, {{int:sitesubtitle}}''. {{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC. <citation>{{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}}</citation> <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}>.\n\n=== [[MHRA بیچیم رهبرلیگی|MHRA بیچیمی]] ===\n{{SITENAME}} contributors, '{{FULLPAGENAME}}', ''{{SITENAME}}, {{int:sitesubtitle}},'' {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC, <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}> [accessed <citation>{{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}</citation>]\n\n=== [[شیکاگو بیچیم بیلگیلری|شیکاگو بیچیمی]] ===\n{{SITENAME}} contributors, \"{{FULLPAGENAME}},\" ''{{SITENAME}}, {{int:sitesubtitle}},'' {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (accessed <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>).\n\n=== [[بیلگی شوراسی یازارلاری|CBE/CSE بیچیمی]] ===\n{{SITENAME}} contributors. {{FULLPAGENAME}} [Internet]. {{SITENAME}}, {{int:sitesubtitle}}; {{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}, {{CURRENTTIME}} UTC [cited <citation>{{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}</citation>]. Available from:\n{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}.\n\n=== [[Bluebook|Bluebook بیچیمی]] ===\n{{FULLPAGENAME}}, {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (last visited <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>).\n\n=== [[BibTeX]] بیچیمی ===\n\n @misc{ wiki:xxx,\n author = \"{{SITENAME}}\",\n title = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\",\n year = \"{{CURRENTYEAR}}\",\n url = \"{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\",\n note = \"[Online; accessed <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\"\n }\n\n[[لتک]] یوآراِل بستهسینی ایشلدنده (<code>\\usepackage{url}</code> باشلیق ایچینده) کی داها گؤزل بیچیملنمیش اینترنت آدرسلری وئرر، بو آشاغیداکی ترجیح وئریلیر:\n\n @misc{ wiki:xxx,\n author = \"{{SITENAME}}\",\n title = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\",\n year = \"{{CURRENTYEAR}}\",\n url = \"'''\\url{'''{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}'''}'''\",\n note = \"[Online; accessed <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\"\n }\n\n\n</div> <!--closing div for \"plainlinks\"-->"
|
||||
}
|
14
i18n/ba.json
Normal file
14
i18n/ba.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Assele",
|
||||
"Haqmar"
|
||||
]
|
||||
},
|
||||
"citethispage-desc": "[[Special:Cite|Өҙөмтә яһау]] махсус битен һәм ҡоралдарҙа һылтанма өҫтәй",
|
||||
"citethispage-link": "Биттән өҙөмтә яһарға",
|
||||
"tooltip-citethispage": "Был битте нисек өҙөмтәләргә кәрәклеге тураһында мәғлүмәт",
|
||||
"citethispage": "Өҙөмтәләү",
|
||||
"citethispage-change-target": "Бит:",
|
||||
"citethispage-change-submit": "Өҙөмтәләргә"
|
||||
}
|
14
i18n/bar.json
Normal file
14
i18n/bar.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Man77",
|
||||
"Mucalexx"
|
||||
]
|
||||
},
|
||||
"citethispage-desc": "Ergänzd d' [[Special:Cite|Zitirhüf]]-Speziaalseiten und an Link im Werkzeigkosten",
|
||||
"citethispage-link": "d' Seiten zitirn",
|
||||
"tooltip-citethispage": "Hihweis, wia dé Seiten zitird wern kå",
|
||||
"citethispage": "Zitirhüf",
|
||||
"citethispage-change-target": "Seiten:",
|
||||
"citethispage-change-submit": "åzoang"
|
||||
}
|
12
i18n/bcc.json
Normal file
12
i18n/bcc.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Mostafadaneshvar"
|
||||
]
|
||||
},
|
||||
"citethispage-desc": "اضافه کن یک [[Special:Cite|citation]] صفحه حاص و لینک جعبه ابزار",
|
||||
"citethispage-link": "ای صفحه ی مرجع بل",
|
||||
"citethispage": "مرجع",
|
||||
"citethispage-change-target": "صفحه:",
|
||||
"citethispage-change-submit": "مرجع"
|
||||
}
|
15
i18n/bcl.json
Normal file
15
i18n/bcl.json
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Filipinayzd",
|
||||
"Geopoet"
|
||||
]
|
||||
},
|
||||
"citethispage-desc": "Nagdudugang nin sarong [[Special:Cite|citation]] espesyal na pahina asin kasugpunan sa palindông kahon",
|
||||
"citethispage-link": "Isambit ining pahina",
|
||||
"tooltip-citethispage": "Impormasyon kun paanuhon na sambiton ining pahina",
|
||||
"citethispage": "Sambiton",
|
||||
"citethispage-change-target": "Pahina:",
|
||||
"citethispage-change-submit": "Sambiton",
|
||||
"citethispage-content": "__NOTOC__ \n<div class=\"mw-specialCiteThisPage-bibliographic\"> \n\n== Bibliograpikong mga detalye para sa {{FULLPAGENAME}} == \n* Pangaran kan pahina: {{FULLPAGENAME}} \n* Awtor: {{SITENAME}} mga paraambag \n* Publikador: ''{{SITENAME}}, {{int:sitesubtitle}}''. \n* Petsa kan huring pagliwat: {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} {{CURRENTTIME}} UTC \n* Petsa kan pagbawi: <citation>{{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} {{CURRENTTIME}} UTC</citation> \n* Permanenteng URL: {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} \n* ID kan Bersyon kan Pahina: {{REVISIONID}} \n\n</div> \n<div class=\"plainlinks mw-specialCiteThisPage-styles\"> \n\n== Pagsambit na mga istilo para sa {{FULLPAGENAME}} == \n\n=== [[Istilong APA]] === \n\n{{FULLPAGENAME}}. ({{CURRENTYEAR}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}). ''{{SITENAME}}, {{int:sitesubtitle}}''. Pinagbawi <citation>{{CURRENTTIME}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation> gikan sa {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}. \n\n=== [[An MLA Manwal na Istilo|Istilong MLA]] === \"{{FULLPAGENAME}}.\" ''{{SITENAME}}, {{int:sitesubtitle}}''. {{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC. <citation>{{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}}</citation> <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}>. \n\n=== [[MHRA Giya sa Istilo|Istilo sa MHRA]] === \n{{SITENAME}} mga paraambag, '{{FULLPAGENAME}}', ''{{SITENAME}}, {{int:sitesubtitle}},'' {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC, <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}> [accessed <citation>{{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}</citation>] \n\n=== [[An Chicago Manwal na Istilo|Istilo sa Chicago]] === \n{{SITENAME}} mga paraambag, \"{{FULLPAGENAME}},\" ''{{SITENAME}}, {{int:sitesubtitle}},'' {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (accessed <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>). \n\n=== [[Konseho kan mga Paraliwat sa Siyensiya|CBE/CSE style]] === \n{{SITENAME}} mga paraambag. {{FULLPAGENAME}} [Internet]. {{SITENAME}}, {{int:sitesubtitle}}; {{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}, {{CURRENTTIME}} UTC [cited <citation>{{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}</citation>]. Yaon gikan sa : {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}. \n\n=== [[Librong Asul|Istilo sa Librong Asul]] === \n{{FULLPAGENAME}}, {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (last visited <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>). \n\n=== [[BibTeX]] entrada === \n\n@misc{ wiki:xxx, awtor = \"{{SITENAME}}\", titulo = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\", taon = \"{{CURRENTYEAR}}\", url = \"{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\", tandai = \"[Online; accessed <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\" }\n\nKunsoarin na ginagamit an [[Latex]] pampaketeng url (<code>\\usepackage{url}</code> yason sa parte kan prayambulo) na tantong minatao nin mas marhayon na kadagdagan sa pormat kan mga estada sa web, an minasunod mapupuwedeng pagpipilian: \n\n@misc{ wiki:xxx, \nawtor = \"{{SITENAME}}\", titulo = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\", taon = \"{{CURRENTYEAR}}\", url = \"'''\\url{'''{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}'''}'''\", tandaan = \"[Online; accessed <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\" \n} \n\n</div> <!--closing div for \"plainlinks\"-->"
|
||||
}
|
15
i18n/be-tarask.json
Normal file
15
i18n/be-tarask.json
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"EugeneZelenko",
|
||||
"Wizardist"
|
||||
]
|
||||
},
|
||||
"citethispage-desc": "Дадае спэцыяльную старонку [[Special:Cite|цытаваньня]] і спасылку ў інструмэнтах",
|
||||
"citethispage-link": "Цытаваць старонку",
|
||||
"tooltip-citethispage": "Інфармацыя пра тое, як цытатаваць гэтую старонку",
|
||||
"citethispage": "Цытаваньне",
|
||||
"citethispage-change-target": "Старонка:",
|
||||
"citethispage-change-submit": "Цытаваць",
|
||||
"citethispage-content": "__NOTOC__\n<div class=\"mw-specialCiteThisPage-bibliographic\">\n\n== Бібліяграфічныя зьвесткі артыкула «{{FULLPAGENAME}}» ==\n\n* Назва артыкула: {{FULLPAGENAME}}\n* Аўтар: Рэдактары {{GRAMMAR:родны|{{SITENAME}}}}\n* Выдавец: ''{{SITENAME}}, {{int:sitesubtitle}}''.\n* Дата апошняй рэвізіі: {{CURRENTDAY}} {{CURRENTMONTHNAMEGEN}} {{CURRENTYEAR}} {{CURRENTTIME}} UTC\n* Дата атрыманьня: <citation>{{CURRENTDAY}} {{CURRENTMONTHNAMEGEN}} {{CURRENTYEAR}} {{CURRENTTIME}} UTC</citation>\n* Сталы URL: {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\n* Ідэнтыфікатар вэрсіі артыкула: {{REVISIONID}}\n\n</div>\n<div class=\"plainlinks mw-specialCiteThisPage-styles\">\n\n== Цытаваньне артыкула «{{FULLPAGENAME}}» рознымі стандартамі ==\n\n=== [[Стыль АПА]] ===\n{{FULLPAGENAME}}. ({{CURRENTYEAR}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}). ''{{SITENAME}}, {{int:sitesubtitle}}''. Retrieved <citation>{{CURRENTTIME}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation> from {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}.\n\n=== [[MLA style manual|Стыль MLA]] ===\n\"{{FULLPAGENAME}}.\" ''{{SITENAME}}, {{int:sitesubtitle}}''. {{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC. <citation>{{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}}</citation> <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}>.\n\n=== [[MHRA Style Guide|Стыль MHRA]] ===\n{{SITENAME}} contributors, '{{FULLPAGENAME}}', ''{{SITENAME}}, {{int:sitesubtitle}},'' {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC, <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}> [accessed <citation>{{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}</citation>]\n\n=== [[The Chicago Manual of Style|Стыль Чыкага]] ===\n{{SITENAME}} contributors, \"{{FULLPAGENAME}},\" ''{{SITENAME}}, {{int:sitesubtitle}},'' {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (accessed <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>).\n\n=== [[Council of Science Editors|Стыль CBE/CSE]] ===\n{{SITENAME}} contributors. {{FULLPAGENAME}} [Internet]. {{SITENAME}}, {{int:sitesubtitle}}; {{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}, {{CURRENTTIME}} UTC [cited <citation>{{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}</citation>]. Available from:\n{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}.\n\n=== [[Bluebook|Стыль Bluebook]] ===\n{{FULLPAGENAME}}, {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (last visited <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>).\n\n=== [[BibTeX]] ===\n\n @misc{ wiki:xxx,\n author = \"{{SITENAME}}\",\n title = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\",\n year = \"{{CURRENTYEAR}}\",\n url = \"{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\",\n note = \"[Online; accessed <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\"\n }\n\nПры выкарыстаньні пакета url для [[LaTeX]] (<code>\\usepackage{url}</code> у пачатку) можна дабіцца лепшага выяўленьня вэб-адрасоў. Неабходна аформіць наступным чынам:\n\n @misc{ wiki:xxx,\n author = \"{{SITENAME}}\",\n title = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\",\n year = \"{{CURRENTYEAR}}\",\n url = \"'''\\url{'''{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}'''}'''\",\n note = \"[Online; accessed <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\"\n }\n\n\n</div> <!--closing div for \"plainlinks\"-->"
|
||||
}
|
13
i18n/be.json
Normal file
13
i18n/be.json
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Хомелка"
|
||||
]
|
||||
},
|
||||
"citethispage-desc": "Дадае [[Special:Cite|цытату]] адмысловых старонак і спасылку панэлі інструментаў",
|
||||
"citethispage-link": "Цытаваць гэту старонку",
|
||||
"tooltip-citethispage": "Інфармацыя пра тое, як цытаваць гэтую старонку",
|
||||
"citethispage": "Спаслацца",
|
||||
"citethispage-change-target": "Старонка:",
|
||||
"citethispage-change-submit": "Спаслацца"
|
||||
}
|
14
i18n/bg.json
Normal file
14
i18n/bg.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"DCLXVI",
|
||||
"Turin"
|
||||
]
|
||||
},
|
||||
"citethispage-desc": "Добавя специална страница и препратка за [[Special:Cite|цитиране]]",
|
||||
"citethispage-link": "Цитиране на страницата",
|
||||
"tooltip-citethispage": "Данни за начин на цитиране на тази страница",
|
||||
"citethispage": "Цитиране",
|
||||
"citethispage-change-target": "Страница:",
|
||||
"citethispage-change-submit": "Цитиране"
|
||||
}
|
13
i18n/bn.json
Normal file
13
i18n/bn.json
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Bellayet",
|
||||
"Zaheen"
|
||||
]
|
||||
},
|
||||
"citethispage-desc": "একটি বিশেষ [[Special:Cite|উদ্ধৃতি]] পাতা ও টুলবক্স সংযোগ যোগ করে",
|
||||
"citethispage-link": "এ পাতাটি উদ্ধৃত করো",
|
||||
"citethispage": "উদ্ধৃত",
|
||||
"citethispage-change-target": "পাতা:",
|
||||
"citethispage-change-submit": "উদ্ধৃত করো"
|
||||
}
|
9
i18n/bo.json
Normal file
9
i18n/bo.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Freeyak"
|
||||
]
|
||||
},
|
||||
"citethispage": "",
|
||||
"citethispage-change-target": "ཤོག་ངོས།"
|
||||
}
|
5
i18n/bpy.json
Normal file
5
i18n/bpy.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"@metadata": [],
|
||||
"citethispage-link": "নিবন্ধ এহানরে উদ্ধৃত করেদে",
|
||||
"citethispage": "উদ্ধৃত করেদে"
|
||||
}
|
14
i18n/br.json
Normal file
14
i18n/br.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Fulup"
|
||||
]
|
||||
},
|
||||
"citethispage-desc": "Ouzhpennañ a ra ur bajenn dibar [[Special:Cite|arroud]] hag ul liamm er voest ostilhoù",
|
||||
"citethispage-link": "Menegiñ ar pennad-mañ",
|
||||
"tooltip-citethispage": "Titouroù war an doare da venegiñ ar bajenn-mañ",
|
||||
"citethispage": "Menegiñ",
|
||||
"citethispage-change-target": "Pajenn :",
|
||||
"citethispage-change-submit": "Menegiñ",
|
||||
"citethispage-content": "__NOTOC__\n<div class=\"mw-specialCiteThisPage-bibliographic\">\n\n== Titouroù levrlennadurel evit {{FULLPAGENAME}} ==\n\n* Anv ar bajenn : {{FULLPAGENAME}} \n* Aozer : kenlabourerien {{SITENAME}}\n* Embanner : ''{{SITENAME}}, {{int:sitesubtitle}}''. \n* Kemm diwezhañ : {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} {{CURRENTTIME}} UTC\n* Deiziad adtapout : <citation>{{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} {{CURRENTTIME}} UTC</citation>\n* URL pad : {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\n* Identeler ar stumm-mañ : {{REVISIONID}}\n\n</div>\n<div class=\"plainlinks mw-specialCiteThisPage-styles\">\n\n== Stiloù arroudoù evit {{FULLPAGENAME}} ==\n\n=== [[Stil APA]] ===\n{{FULLPAGENAME}}. ({{CURRENTYEAR}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}). ''{{SITENAME}}, {{int:sitesubtitle}}''. Adtapet d'an <citation>{{CURRENTTIME}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation> e {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}.\n\n=== [[Stil MLA]] ===\n\"{{FULLPAGENAME}}.\" ''{{SITENAME}}, {{int:sitesubtitle}}''. {{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC. <citation>{{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}}</citation> <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}>.\n\n=== [[Stil MHRA]] ===\nPerzhidi {{SITENAME}}, '{{FULLPAGENAME}}', ''{{SITENAME}}, {{int:sitesubtitle}},'' {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC, <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}> [sellet d'an <citation>{{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}</citation>]\n\n=== [[Stil Chicago]] ===\nPerzhidi {{SITENAME}}, \"{{FULLPAGENAME}},\" ''{{SITENAME}}, {{int:sitesubtitle}},'' {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (sellet d'an <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>).\n\n=== [[Stil CBE/CSE]] ===\nPerzhidi {{SITENAME}}. {{FULLPAGENAME}} [Internet]. {{SITENAME}}, {{int:sitesubtitle}}; {{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}, {{CURRENTTIME}} UTC [meneget d'an <citation>{{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}</citation>]. Hegerz war : \n{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}.\n\n=== [[Stil Bluebook]] ===\n{{FULLPAGENAME}}, {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (sellet d'an <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>).\n\n=== Enmont [[BibTeX]] ===\n\n @misc{ wiki:xxx,\n author = \"{{SITENAME}}\",\n title = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\",\n year = \"{{CURRENTYEAR}}\",\n url = \"{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\",\n note = \"[Enlinenn ; sellet d'an <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\"\n }\n\nMa rit gant ar pakadur URL e [[LaTeX]] (<code>\\usepackage{url}</code> en ul lec'h bennak er raklavar), a bourchas chomlec'hioù Web furmadet gwelloc'h, grit gant ar furmad-mañ :\n\n @misc{ wiki:xxx,\n author = \"{{SITENAME}}\",\n title = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\",\n year = \"{{CURRENTYEAR}}\",\n url = \"'''\\url{'''{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}'''}'''\",\n note = \"[Enlinenn ; sellet d'an <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\"\n }\n\n\n</div> <!--closing div for \"plainlinks\"-->"
|
||||
}
|
13
i18n/bs.json
Normal file
13
i18n/bs.json
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"CERminator"
|
||||
]
|
||||
},
|
||||
"citethispage-desc": "Dodaje posebnu stranicu za [[Special:Cite|citiranje]] i link u alatnoj kutiji",
|
||||
"citethispage-link": "Citiraj ovu stranicu",
|
||||
"tooltip-citethispage": "Informacije kako citirati ovu stranicu",
|
||||
"citethispage": "Citiranje",
|
||||
"citethispage-change-target": "Stranica:",
|
||||
"citethispage-change-submit": "Citiraj"
|
||||
}
|
|
@ -4,5 +4,5 @@
|
|||
"Elvonudinium"
|
||||
]
|
||||
},
|
||||
"cite_article_link": "Энэ хуудаһаһаа эшэ татаха"
|
||||
"citethispage-link": "Энэ хуудаһаһаа эшэ татаха"
|
||||
}
|
17
i18n/ca.json
Normal file
17
i18n/ca.json
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Davidpar",
|
||||
"SMP",
|
||||
"Toniher",
|
||||
"Vriullop"
|
||||
]
|
||||
},
|
||||
"citethispage-desc": "Afegeix un enllaç i una pàgina especial de [[Special:Cite|citació]]",
|
||||
"citethispage-link": "Cita aquesta pàgina",
|
||||
"tooltip-citethispage": "Informació sobre com citar aquesta pàgina.",
|
||||
"citethispage": "Citeu",
|
||||
"citethispage-change-target": "Pàgina:",
|
||||
"citethispage-change-submit": "Cita",
|
||||
"citethispage-content": "__NOTOC__\n<div class=\"mw-specialCiteThisPage-bibliographic\">\n\n== Informació bibliogràfica de {{FULLPAGENAME}} ==\n\n* Pàgina: {{FULLPAGENAME}}\n* Autor: col·laboradors del projecte {{SITENAME}}\n* Editor: ''{{SITENAME}}, {{int:sitesubtitle}}''.\n* Darrera versió: {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} {{CURRENTTIME}} UTC\n* Consulta: <citation>{{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} {{CURRENTTIME}} UTC</citation>\n* URL permanent: {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\n* Identificador de la versió: {{REVISIONID}}\n\n</div>\n<div class=\"plainlinks mw-specialCiteThisPage-styles\">\n\n== Estils de citacions per {{FULLPAGENAME}} ==\n\n=== [[Llibre d'estil APA|Estil APA]] ===\n{{FULLPAGENAME}}. ({{CURRENTYEAR}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}). ''{{SITENAME}}, {{int:sitesubtitle}}''. Recuperat <citation>{{CURRENTTIME}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation> a {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}.\n\n=== [[Llibre d'estil MLA|Estil MLA]] ===\n\"{{FULLPAGENAME}}.\" ''{{SITENAME}}, {{int:sitesubtitle}}''. {{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC. <citation>{{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}}</citation> <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}>.\n\n=== [[Llibre d'estil MHRA|Estil MHRA]] ===\nCol·laboradors de {{SITENAME}}, '{{FULLPAGENAME}}', ''{{SITENAME}}, {{int:sitesubtitle}},'' {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC, <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}> [consulta <citation>{{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}</citation>]\n\n=== [[Llibre d'estil Chicago|Estil Chicago]] ===\nCol·laboradors de {{SITENAME}}, \"{{FULLPAGENAME}},\" ''{{SITENAME}}, {{int:sitesubtitle}},'' {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (consulta <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>).\n\n=== [[Council of Science Editors|Estil CBE/CSE]] ===\nCol·laboradors de {{SITENAME}}. {{FULLPAGENAME}} [Internet]. {{SITENAME}}, {{int:sitesubtitle}}; {{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}, {{CURRENTTIME}} UTC [citat <citation>{{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}</citation>]. Disponible a:\n{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}.\n\n=== [[Bluebook|Estil Bluebook]] ===\n{{FULLPAGENAME}}, {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (darrera consulta <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>).\n\n=== Entrada [[BibTeX]] ===\n\n @misc{ wiki:xxx,\n author = \"{{SITENAME}}\",\n title = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\",\n year = \"{{CURRENTYEAR}}\",\n url = \"{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\",\n note = \"[En línia; consulta <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\"\n }\n\nSi empreu el paquet url per a [[LaTeX]] (<code>\\usepackage{url}</code> en algun lloc del preàmbul) que facilita el format d'adreces web, pot ser millor el codi següent:\n\n @misc{ wiki:xxx,\n author = \"{{SITENAME}}\",\n title = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\",\n year = \"{{CURRENTYEAR}}\",\n url = \"'''\\url{'''{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}'''}'''\",\n note = \"[En línia; consulta <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\"\n }\n\n\n</div> <!--closing div for \"plainlinks\"-->"
|
||||
}
|
11
i18n/cdo.json
Normal file
11
i18n/cdo.json
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Yejianfei"
|
||||
]
|
||||
},
|
||||
"citethispage-link": "標記茲蜀頁",
|
||||
"citethispage": "標記",
|
||||
"citethispage-change-target": "頁面",
|
||||
"citethispage-change-submit": "標記"
|
||||
}
|
15
i18n/ce.json
Normal file
15
i18n/ce.json
Normal file
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Sasan700",
|
||||
"Умар"
|
||||
]
|
||||
},
|
||||
"citethispage-desc": "ГӀирсан тӀе туху [[Special:Cite|дешнаш дало]] белхан агӀо а хьажораг а",
|
||||
"citethispage-link": "АгӀонах лаьцна дешнаш дало",
|
||||
"tooltip-citethispage": "ХӀара бу хаам агӀонах лаьцна дешнаш муха дало деза гойтуш",
|
||||
"citethispage": "АгӀона тӀе йолу библиографин хьажоргаш",
|
||||
"citethispage-change-target": "АгӀо:",
|
||||
"citethispage-change-submit": "Кечъе хьажоргаш",
|
||||
"citethispage-content": "__NOTOC__\n<div class=\"mw-specialCiteThisPage-bibliographic\">\n\n== {{FULLPAGENAME}} агӀона библиографин хаамаш ==\n\n* Яззам: {{FULLPAGENAME}}\n* Автор: {{SITENAME}} автораш\n* Кхоьллина: ''{{SITENAME}}, {{int:sitesubtitle}}''.\n* ТӀехьара хийцам бина: {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} {{CURRENTTIME}} UTC\n* Чуяьккхина терахь: <citation>{{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}} {{CURRENTTIME}} UTC</citation>\n* Даиман йолу хьажораг: {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\n* АгӀон версийн ID: {{REVISIONID}}\n\n</div>\n<div class=\"plainlinks mw-specialCiteThisPage-styles\">\n\n== «{{FULLPAGENAME}}» агӀона тӀе йолу хьажоргаш кечяран кепаш ==\n\n=== [http://protect.gost.ru/document.aspx?control=7&id=173511 ГОСТ 7.0.5—2008] хатӀ (библиографин хьажораг) ===\n{{FULLPAGENAME}} // {{SITENAME}}. [{{REVISIONYEAR}}—{{REVISIONYEAR}}]. Карлаяьккхина терахь: {{#time:d.m.Y|{{REVISIONTIMESTAMP}}}}. URL: {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (дехар дина терахь: {{#time:d.m.Y|{{LOCALTIMESTAMP}}}}).\n<div style=\"font-size:smaller; padding-left:2.5em\">\n\n</div>\n\n=== [[ГОСТ 7.1|ГОСТ 7.1—2003]] и [[ГОСТ 7.82|ГОСТ 7.82—2001]] хатӀ (доца библиографин дӀаяздар) ===\n{{FULLPAGENAME}} [Электронан ресурс] : {{int:Tagline}} : Верси {{REVISIONID}}, Ӏалашйина {{CURRENTTIME}} UTC {{CURRENTDAY}} {{CURRENTMONTHNAMEGEN}} {{CURRENTYEAR}} / Википедин автораш // {{SITENAME}}, {{int:sitesubtitle}}. — Электрон. дан. — Сан-Франциско: Викимедиан фонд, {{CURRENTYEAR}}. — ТӀекхачаран хьал: {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\n\n=== [[APA style|ХатӀ APA]] ===\n{{FULLPAGENAME}}. ({{CURRENTYEAR}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}). ''{{SITENAME}}, {{int:sitesubtitle}}''. Retrieved <citation>{{CURRENTTIME}}, {{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation> from {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}.\n\n=== [[The MLA style manual|ХатӀ MLA]] ===\n\"{{FULLPAGENAME}}.\" ''{{SITENAME}}, {{int:sitesubtitle}}''. {{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC. <citation>{{CURRENTDAY}} {{CURRENTMONTHABBREV}} {{CURRENTYEAR}}, {{CURRENTTIME}}</citation> <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}>.\n\n=== [[MHRA Style Guide|ХатӀ MHRA]] ===\n{{SITENAME}} contributors, '{{FULLPAGENAME}}', ''{{SITENAME}}, {{int:sitesubtitle}},'' {{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}, {{CURRENTTIME}} UTC, <{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}> [accessed <citation>{{CURRENTDAY}} {{CURRENTMONTHNAME}} {{CURRENTYEAR}}</citation>]\n\n=== [[The Chicago Manual of Style|Чикаган хатӀ]] ===\n{{SITENAME}} contributors, \"{{FULLPAGENAME}},\" ''{{SITENAME}}, {{int:sitesubtitle}},'' {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (accessed <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>).\n\n=== [[Council of Science Editors|ХатӀ CBE/CSE]] ===\n{{SITENAME}} contributors. {{FULLPAGENAME}} [Internet]. {{SITENAME}}, {{int:sitesubtitle}}; {{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}, {{CURRENTTIME}} UTC [cited <citation>{{CURRENTYEAR}} {{CURRENTMONTHABBREV}} {{CURRENTDAY}}</citation>]. Available from: \n{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}.\n\n=== [[Bluebook|Bluebook style]] ===\n{{FULLPAGENAME}}, {{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}} (last visited <citation>{{CURRENTMONTHNAME}} {{CURRENTDAY}}, {{CURRENTYEAR}}</citation>).\n\n=== [[BibTeX]] чура дӀаяздар ===\n @misc{ wiki:xxx,\n author = \"{{SITENAME}}\",\n title = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\",\n year = \"{{CURRENTYEAR}}\",\n url = \"{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}\",\n note = \"[Online; accessed <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\"\n }\n\n[[LaTeX]]-гулам лела беш url веб-адресаш дика гайта (<code>\\usepackage{url}</code>), лелайича дика хира ду:\n\n @misc{ wiki:xxx,\n author = \"{{SITENAME}}\",\n title = \"{{FULLPAGENAME}} --- {{SITENAME}}{,} {{int:sitesubtitle}}\",\n year = \"{{CURRENTYEAR}}\",\n url = \"'''\\url{'''{{canonicalurl:{{FULLPAGENAME}}|oldid={{REVISIONID}}}}'''}'''\",\n note = \"[Online; accessed <citation>{{CURRENTDAY}}-{{CURRENTMONTHNAME}}-{{CURRENTYEAR}}</citation>]\"\n }\n\n</div> <!--closing div for \"plainlinks\"-->"
|
||||
}
|
|
@ -4,5 +4,5 @@
|
|||
"Abastillas"
|
||||
]
|
||||
},
|
||||
"cite": "Kutloa"
|
||||
"citethispage": "Kutloa"
|
||||
}
|
13
i18n/ckb.json
Normal file
13
i18n/ckb.json
Normal file
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Asoxor",
|
||||
"Calak"
|
||||
]
|
||||
},
|
||||
"citethispage-link": "ئەم پەڕەیە بکە بە ژێدەر",
|
||||
"tooltip-citethispage": "زانیاری سەبارەت بە چۆنیەتیی بە ژێدەر کردنی ئەم پەڕە",
|
||||
"citethispage": "بیکە بە ژێدەر",
|
||||
"citethispage-change-target": "پەڕە:",
|
||||
"citethispage-change-submit": "بیکە بە ژێدەر"
|
||||
}
|
6
i18n/co.json
Normal file
6
i18n/co.json
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"@metadata": [],
|
||||
"citethispage-link": "Cità issu articulu",
|
||||
"citethispage": "Cità",
|
||||
"citethispage-change-target": "Pagina:"
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Naudefj"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Maak <nowiki><ref[ name=id]></nowiki> en <nowiki><references/></nowiki> etikette beskikbaar vir sitasie.",
|
||||
"cite_error": "Citefout: $1",
|
||||
"cite_error_ref_numeric_key": "Ongeldige etiket <code><ref></code>;\ndie naam kan nie 'n eenvoudige heelgetal wees nie.\nGebruik 'n beskrywende titel",
|
||||
"cite_error_ref_no_key": "Ongeldige etiket <code><ref></code>;\n\"refs\" sonder inhoud moet 'n naam hê",
|
||||
"cite_error_ref_too_many_keys": "Ongeldig <code><ref></code>-etiket;\nongeldige name, byvoorbeeld te veel"
|
||||
}
|
|
@ -1,26 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Juanpabl"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Adibe as etiquetas <nowiki><ref[ name=id]></nowiki> y <nowiki><references/></nowiki> ta fer citas",
|
||||
"cite_error": "Error en a cita: $1",
|
||||
"cite_error_ref_numeric_key": "Etiqueta <code><ref></code> incorreuta; o nombre d'a etiqueta no puede estar un numero entero, faiga servir un títol descriptivo",
|
||||
"cite_error_ref_no_key": "Etiqueta <code><ref></code> incorreuta; as referencias sin de conteniu han de tener un nombre",
|
||||
"cite_error_ref_too_many_keys": "Etiqueta <code><ref></code> incorreuta; nombres de parametros incorreutos.",
|
||||
"cite_error_ref_no_input": "Etiqueta <code><ref></code> incorreuta; as referencias sin nombre no han de tener conteniu",
|
||||
"cite_error_references_invalid_parameters": "Etiqueta <code><references></code> incorreuta; no se premiten parametros, faiga servir <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Etiqueta <code><references></code> no conforme;\nnomás se premite o parametro \"group\".\nFaiga servir <code><references /></code>, u <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Ya no quedan etiquetas backlink presonalizatas, defina más en o mensache <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>",
|
||||
"cite_error_no_link_label_group": "S'han acorau as etiquetas de vinclos personalizaus ta o grupo \"$1\".\nDefina-ne mas en o mensache <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "Etiqueta <code><ref></code> incorreuta; no ha escrito garra testo t'as referencias nombratas <code>$1</code>",
|
||||
"cite_error_included_ref": "Zarrando <code></ref></code> falta una etiqueta <code><ref></code>",
|
||||
"cite_error_refs_without_references": "Existen etiquetas <code><ref></code>, pero no se trobó garra etiqueta <code><references /></code>",
|
||||
"cite_error_group_refs_without_references": "Existen etiquetas <code><ref></code> ta un grupo clamau \"$1\", pero no se trobó garra etiqueta <code><references group=\"$1\"/></code>",
|
||||
"cite_error_references_group_mismatch": "O tag <code><ref></code> en <code><references></code> presienta l'atributo de grupo en conflicto \"$1\".",
|
||||
"cite_error_references_missing_group": "O tag <code><ref></code> definiu en <code><references></code> incluye l'atributo \"$1\" no declarau en o texto precedente.",
|
||||
"cite_error_references_missing_key": "O tag <code><ref></code> con nombre \"$1\" definiu en <code><references></code> no s'emplega en o texto precedente.",
|
||||
"cite_error_references_no_key": "O tag <code><ref></code> definiu en <code><references></code> no tiene garra atributo de nombre.",
|
||||
"cite_error_empty_references_define": "O tag <code><ref></code> definiu en <code><references></code> con nombre \"$1\" no tiene garra conteniu."
|
||||
}
|
|
@ -1,34 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Aiman titi",
|
||||
"Asaifm",
|
||||
"Meno25",
|
||||
"OsamaK",
|
||||
"زكريا"
|
||||
]
|
||||
},
|
||||
"cite-desc": "يضيف وسوم <nowiki><ref[ name=id]></nowiki> و <nowiki><references/></nowiki> ، للاستشهادات",
|
||||
"cite_error": "خطأ استشهاد: $1",
|
||||
"cite_error_ref_numeric_key": "وسم <code><ref></code> غير صحيح؛\nالاسم لا يمكن أن يكون عددا صحيحا بسيطا. استخدم عنوانا وصفيا",
|
||||
"cite_error_ref_no_key": "وسم <code><ref></code> غير صحيح؛\nالمراجع غير ذات المحتوى يجب أن تمتلك اسما",
|
||||
"cite_error_ref_too_many_keys": "وسم <code><ref></code> غير صحيح؛\nأسماء غير صحيحة، على سبيل المثال كثيرة جدا",
|
||||
"cite_error_ref_no_input": "وسم <code><ref></code> غير صحيح؛\nالمراجع غير ذات الاسم يجب أن تمتلك محتوى",
|
||||
"cite_error_references_invalid_parameters": "وسم <code><references></code> غير صحيح؛\nلا محددات مسموح بها.\nاستخدم <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "وسم <code><references></code> غير صحيح؛\nالمحدد \"group\" فقط مسموح به.\nاستخدم <code><references /></code>، أو <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "نفدت علامات الوصلات الراجعة المخصصة.\nعرف المزيد في رسالة <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>",
|
||||
"cite_error_no_link_label_group": "تم الإنتهاء من تسمية الارتباطات المخصصة لمجموعة \"$1\".\n\nللحصول على تعريف أكثر أنظر هذه <nowiki>[[MediaWiki:$2]]</nowiki> الرسالة.",
|
||||
"cite_error_references_no_text": "وسم <code><ref></code> غير صحيح؛\nلا نص تم توفيره للمراجع المسماة <code>$1</code>",
|
||||
"cite_error_included_ref": "إغلاق <code></ref></code> مفقود لوسم <code><ref></code>",
|
||||
"cite_error_refs_without_references": "وسم <code><ref></code> موجود، لكن لا وسم <code><references/></code> تم العثور عليه",
|
||||
"cite_error_group_refs_without_references": "وسوم <code><ref></code> موجودة لمجموعة اسمها \"$1\"، ولكن لم يتم العثور على وسم <code><references group=\"$1\"/></code> أو هناك وسم <code></ref></code> ناقص",
|
||||
"cite_error_references_group_mismatch": "الوسم <code><ref></code> في <code><references></code> فيه خاصية group متضاربة \"$1\".",
|
||||
"cite_error_references_missing_group": "الوسم <code><ref></code> المُعرّف في <code><references></code> فيه خاصية group \"$1\" التي لا تظهر في النص السابق.",
|
||||
"cite_error_references_missing_key": "الوسم <code><ref></code> ذو الاسم \"$1\" المُعرّف في <code><references></code> غير مستخدم في النص السابق.",
|
||||
"cite_error_references_no_key": "الوسم <code><ref></code> المعرف في <code><references></code> ليس له خاصة اسم.",
|
||||
"cite_error_empty_references_define": "الوسم <code><ref></code> المُعرّف في <code><references></code> بالاسم \"$1\" ليس له محتوى.",
|
||||
"cite_references_link_many": "<li id=\"$1\"><span class=\"mw-cite-backlink\"><b>^</b> $2</span> $3</li>",
|
||||
"cite_references_link_many_format_backlink_labels": "أ ب ت ث ج ح خ د ذ ر ز س ش ص ض ط ظ ع غ ف ق ك ل م ن ه و ي أأ أب أت أث أج أح أخ أد أذ أر أز أس أش أص أض أط أظ أع أغ أف أق أك أل أم أن أه أو أي بأ بب بت بث بج بح بخ بد بذ بر بز بس بش بص بض بط بظ بع بغ بف بق بك بل بم بن به بو بي تأ تب تت تث تج تح تخ تد تذ تر تز تس تش تص تض تط تظ تع تغ تف تق تك تل تم تن ته تو تي ثأ ثب ثت ثث ثج ثح ثخ ثد ثذ ثر ثز ثس ثش ثص ثض ثط ثظ ثع ثغ ثف ثق ثك ثل ثم ثن ثه ثو ثي جأ جب جت جث جج جح جخ جد جذ جر جز جس جش جص جض جط جظ جع جغ جف جق جك جل جم جن جه جو جي حأ حب حت حث حج حح حخ حد حذ حر حز حس حش حص حض حط حظ حع حغ حف حق حك حل حم حن حه حو حي خأ خب خت خث خج خح خخ خد خذ خر خز خس خش خص خض خط خظ خع خغ خف خق خك خل خم خن خه خو خي دأ دب دت دث دج دح دخ دد دذ در دز دس دش دص دض دط دظ دع دغ دف دق دك دل دم دن ده دو دي ذأ ذب ذت ذث ذج ذح ذخ ذد ذذ ذر ذز ذس ذش ذص ذض ذط ذظ ذع ذغ ذف ذق ذك ذل ذم ذن ذه ذو ذي رأ رب رت رث رج رح رخ رد رذ رر رز رس رش رص رض رط رظ رع رغ رف رق رك رل رم رن ره رو ري زأ زب زت زث زج زح زخ زد زذ زر زز زس زش زص زض زط زظ زع زغ زف زق زك زل زم زن زه زو زي سأ سب ست سث سج سح سخ سد سذ سر سز سس سش سص سض سط سظ سع سغ سف سق سك سل سم سن سه سو سي شأ شب شت شث شج شح شخ شد شذ شر شز شس شش شص شض شط شظ شع شغ شف شق شك شل شم شن شه شو شي صأ صب صت صث صج صح صخ صد صذ صر صز صس صش صص صض صط صظ صع صغ صف صق صك صل صم صن صه صو صي ضأ ضب ضت ضث ضج ضح ضخ ضد ضذ ضر ضز ضس ضش ضص ضض ضط ضظ ضع ضغ ضف ضق ضك ضل ضم ضن ضه ضو ضي طأ طب طت طث طج طح طخ طد طذ طر طز طس طش طص طض طط طظ طع طغ طف طق طك طل طم طن طه طو طي ظأ ظب ظت ظث ظج ظح ظخ ظد ظذ ظر ظز ظس ظش ظص ظض ظط ظظ ظع ظغ ظف ظق ظك ظل ظم ظن ظه ظو ظي عأ عب عت عث عج عح عخ عد عذ عر عز عس عش عص عض عط عظ عع عغ عف عق عك عل عم عن عه عو عي غأ غب غت غث غج غح غخ غد غذ غر غز غس غش غص غض غط غظ غع غغ غف غق غك غل غم غن غه غو غي فأ فب فت فث فج فح فخ فد فذ فر فز فس فش فص فض فط فظ فع فغ فف فق فك فل فم فن فه فو في قأ قب قت قث قج قح قخ قد قذ قر قز قس قش قص قض قط قظ قع قغ قف قق قك قل قم قن قه قو قي كأ كب كت كث كج كح كخ كد كذ كر كز كس كش كص كض كط كظ كع كغ كف كق كك كل كم كن كه كو كي لأ لب لت لث لج لح لخ لد لذ لر لز لس لش لص لض لط لظ لع لغ لف لق لك لل لم لن له لو لي مأ مب مت مث مج مح مخ مد مذ مر مز مس مش مص مض مط مظ مع مغ مف مق مك مل مم من مه مو مي نأ نب نت نث نج نح نخ ند نذ نر نز نس نش نص نض نط نظ نع نغ نف نق نك نل نم نن نه نو ني هأ هب هت هث هج هح هخ هد هذ هر هز هس هش هص هض هط هظ هع هغ هف هق هك هل هم هن هه هو هي وأ وب وت وث وج وح وخ ود وذ ور وز وس وش وص وض وط وظ وع وغ وف وق وك ول وم ون وه وو وي يأ يب يت يث يج يح يخ يد يذ ير يز يس يش يص يض يط يظ يع يغ يف يق يك يل يم ين يه يو يي",
|
||||
"cite_references_link_accessibility_label": "تعدى المحتوى الحالي إلى أعلى الصفحة",
|
||||
"cite_references_link_many_accessibility_label": "تعدى إلى الأعلى ل:"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Basharh"
|
||||
]
|
||||
},
|
||||
"cite_error": "ܦܘܕܐ ܒܡܣܗܕܢܘܬܐ: $1"
|
||||
}
|
|
@ -1,23 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Ghaly",
|
||||
"Meno25",
|
||||
"Ramsis II"
|
||||
]
|
||||
},
|
||||
"cite-desc": "بيضيف التاجز <nowiki><ref[ name=id]></nowiki> و <nowiki><references/></nowiki> ، للاستشهاد",
|
||||
"cite_error": "المرجع غلط: $1",
|
||||
"cite_error_ref_numeric_key": "التاج <code><ref></code> مش صحيح؛\nالاسم ماينفعش يكون عدد صحيح بسيط. استخدم عنوان بيوصف",
|
||||
"cite_error_ref_no_key": "التاج <code><ref></code> مش صحيح؛\nالمراجع اللى من غير محتوى لازميكون ليها اسم",
|
||||
"cite_error_ref_too_many_keys": "التاج <code><ref></code> مش صحيح؛\nأسامى مش صحيحة، يعنى مثلا: كتير قوي",
|
||||
"cite_error_ref_no_input": "تاج <code><ref></code> مش صحيح؛\nالمراجع اللى من غير اسم لازم يكون ليها محتوى",
|
||||
"cite_error_references_invalid_parameters": "مش صحيح <code><references></code> تاج;\nمافيش محددات مسموح بيها.\nاستخدم <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "مش صحيح <code><references></code> تاج;\nمحدد \"group\" مسموح بيه بس.\nاستخدم <code><references /></code>, or <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "علامات الوصلات الراجعة المخصصة خلصت.\nعرف اكتر فى رسالة <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>",
|
||||
"cite_error_references_no_text": "مش صحيح <code><ref></code> تاج;\nمافيش نص متوافر فى المراجع اللى اسمها<code>$1</code>",
|
||||
"cite_error_included_ref": "إغلاق <code></ref></code> مفقود لوسم <code><ref></code>",
|
||||
"cite_error_refs_without_references": "<code><ref></code> التاجز موجوده, بس مافيش <code><references/></code> تاجز اتلقت",
|
||||
"cite_error_group_refs_without_references": "<code><ref></code> فى تاجز موجوده لمجموعه اسمها \"$1\", بس مافيش مقابلها تاجز <code><references group=\"$1\"/></code> اتلقت",
|
||||
"cite_references_link_many_format_backlink_labels": "أ ب ت ث ج ح خ د ذ ر ز س ش ص ض ط ظ ع غ ف ق ك ل م ن ه و ى أأ أب أت أث أج أح أخ أد أذ أر أز أس أش أص أض أط أظ أع أغ أف أق أك أل أم أن أه أو أى بأ بب بت بث بج بح بخ بد بذ بر بز بس بش بص بض بط بظ بع بغ بف بق بك بل بم بن به بو بى تأ تب تت تث تج تح تخ تد تذ تر تز تس تش تص تض تط تظ تع تغ تف تق تك تل تم تن ته تو تى ثأ ثب ثت ثث ثج ثح ثخ ثد ثذ ثر ثز ثس ثش ثص ثض ثط ثظ ثع ثغ ثف ثق ثك ثل ثم ثن ثه ثو ثى جأ جب جت جث جج جح جخ جد جذ جر جز جس جش جص جض جط جظ جع جغ جف جق جك جل جم جن جه جو جى حأ حب حت حث حج حح حخ حد حذ حر حز حس حش حص حض حط حظ حع حغ حف حق حك حل حم حن حه حو حى خأ خب خت خث خج خح خخ خد خذ خر خز خس خش خص خض خط خظ خع خغ خف خق خك خل خم خن خه خو خى دأ دب دت دث دج دح دخ دد دذ در دز دس دش دص دض دط دظ دع دغ دف دق دك دل دم دن ده دو دى ذأ ذب ذت ذث ذج ذح ذخ ذد ذذ ذر ذز ذس ذش ذص ذض ذط ذظ ذع ذغ ذف ذق ذك ذل ذم ذن ذه ذو ذى رأ رب رت رث رج رح رخ رد رذ رر رز رس رش رص رض رط رظ رع رغ رف رق رك رل رم رن ره رو رى زأ زب زت زث زج زح زخ زد زذ زر زز زس زش زص زض زط زظ زع زغ زف زق زك زل زم زن زه زو زى سأ سب ست سث سج سح سخ سد سذ سر سز سس سش سص سض سط سظ سع سغ سف سق سك سل سم سن سه سو سى شأ شب شت شث شج شح شخ شد شذ شر شز شس شش شص شض شط شظ شع شغ شف شق شك شل شم شن شه شو شى صأ صب صت صث صج صح صخ صد صذ صر صز صس صش صص صض صط صظ صع صغ صف صق صك صل صم صن صه صو صى ضأ ضب ضت ضث ضج ضح ضخ ضد ضذ ضر ضز ضس ضش ضص ضض ضط ضظ ضع ضغ ضف ضق ضك ضل ضم ضن ضه ضو ضى طأ طب طت طث طج طح طخ طد طذ طر طز طس طش طص طض طط طظ طع طغ طف طق طك طل طم طن طه طو طى ظأ ظب ظت ظث ظج ظح ظخ ظد ظذ ظر ظز ظس ظش ظص ظض ظط ظظ ظع ظغ ظف ظق ظك ظل ظم ظن ظه ظو ظى عأ عب عت عث عج عح عخ عد عذ عر عز عس عش عص عض عط عظ عع عغ عف عق عك عل عم عن عه عو عى غأ غب غت غث غج غح غخ غد غذ غر غز غس غش غص غض غط غظ غع غغ غف غق غك غل غم غن غه غو غى فأ فب فت فث فج فح فخ فد فذ فر فز فس فش فص فض فط فظ فع فغ فف فق فك فل فم فن فه فو فى قأ قب قت قث قج قح قخ قد قذ قر قز قس قش قص قض قط قظ قع قغ قف قق قك قل قم قن قه قو قى كأ كب كت كث كج كح كخ كد كذ كر كز كس كش كص كض كط كظ كع كغ كف كق كك كل كم كن كه كو كى لأ لب لت لث لج لح لخ لد لذ لر لز لس لش لص لض لط لظ لع لغ لف لق لك لل لم لن له لو لى مأ مب مت مث مج مح مخ مد مذ مر مز مس مش مص مض مط مظ مع مغ مف مق مك مل مم من مه مو مى نأ نب نت نث نج نح نخ ند نذ نر نز نس نش نص نض نط نظ نع نغ نف نق نك نل نم نن نه نو نى هأ هب هت هث هج هح هخ هد هذ هر هز هس هش هص هض هط هظ هع هغ هف هق هك هل هم هن هه هو هى وأ وب وت وث وج وح وخ ود وذ ور وز وس وش وص وض وط وظ وع وغ وف وق وك ول وم ون وه وو وى يأ يب يت يث يج يح يخ يد يذ ير يز يس يش يص يض يط يظ يع يغ يف يق يك يل يم ين يه يو يى"
|
||||
}
|
|
@ -1,28 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Bishnu Saikia",
|
||||
"Gitartha.bordoloi",
|
||||
"Reedy"
|
||||
]
|
||||
},
|
||||
"cite-desc": "উদ্ধৃতিৰ বাবে <nowiki><ref[ name=id]></nowiki> আৰু <nowiki><references/></nowiki> টেগ্সমূহ যোগ কৰে",
|
||||
"cite_error": "উদ্ধৃতি ত্ৰুটি: $1",
|
||||
"cite_error_ref_numeric_key": "অবৈধ <code><ref></code> টেগ;\nনাম কোনো সৰল পূৰ্ণসংখ্যা হ'ব নোৱাৰে। এটা বৰ্ণনামূলক শিৰোনাম ব্যৱহাৰ কৰক।",
|
||||
"cite_error_ref_no_key": "অবৈধ <code><ref></code> টেগ;\nসমলবিহীন refসমূহৰ অৱশ্যেই এটা নাম থাকিব লাগিব।",
|
||||
"cite_error_ref_too_many_keys": "অবৈধ <code><ref></code> টেগ;\nঅবৈধ নাম, যেনে- বহুসংখ্যক",
|
||||
"cite_error_ref_no_input": "অবৈধ <code><ref></code> টেগ;\nনামবিহীন refসমূহৰ অৱশ্যেই সমল থাকিব লাগিব।",
|
||||
"cite_error_references_invalid_parameters": "অবৈধ <code><references></code> টেগ;\nকোনো পেৰামিটাৰ অনুমোদন কৰা হোৱা নাই।\n<code><references /></code> ব্যৱহাৰ কৰক।",
|
||||
"cite_error_references_invalid_parameters_group": "অবৈধ <code><references></code> টেগ;\nকেৱল পেৰামিটাৰ \"গোট\"ক অনুমতি দিয়া হৈছে।\n<code><references /></code>, বা <code><references group=\"...\" /></code> ব্যৱহাৰ কৰক",
|
||||
"cite_error_references_no_backlink_label": "কাষ্টম বেকলিংক লেবেল শেষ হৈছে।\n<nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki> বাৰ্তাত আৰু সংজ্ঞা দিয়ক।",
|
||||
"cite_error_no_link_label_group": "\"$1\" গোটৰ বাবে কাষ্টম লিংক লেবেল উকলিছে।\n<nowiki>[[MediaWiki:$2]]</nowiki> বাৰ্তাত আৰু সংজ্ঞা দিয়ক।",
|
||||
"cite_error_references_no_text": "অবৈধ <code><ref></code> টেগ;\n<code>$1</code> নামৰ refৰ বাবে কোনো পাঠ্য প্ৰদান কৰা হোৱা নাই",
|
||||
"cite_error_included_ref": "<code></ref></code> বন্ধ কৰা হৈছে; <code><ref></code> টেগৰ বাবে পোৱা নাই",
|
||||
"cite_error_refs_without_references": "<code><ref></code> টেগ্সমূহ আছে, কিন্তু কোনো <code><references/></code> বা <code>{{Reflist}}</code> টেগ্ পোৱা নগ'ল। অনুগ্ৰহ কৰি প্ৰবন্ধৰ শেষ অংশত ওপৰোক্ত টেগ্ যোগ দিয়ক।",
|
||||
"cite_error_group_refs_without_references": "<code><ref></code> টেগ্সমূহ \"$1\" নামৰ এটা গোটৰ বাবে আছে, কিন্তু তাৰ <code><references group=\"$1\"/></code> টেগ্ পোৱা নগ'ল",
|
||||
"cite_error_references_group_mismatch": "\"$1\" গোটৰ ক্ষেত্ৰত <code><references></code>ৰ <code><ref></code> টেগ্ ব্যৱহাৰত সমস্যা হৈছে।",
|
||||
"cite_error_references_missing_group": "<code><references></code>ত দিয়া <code><ref></code> টেগৰ \"$1\" গোট এট্ট্ৰিবিউট আছে, যিটো পূৰ্বৰ পাঠ্যত ওলোৱা নাই।",
|
||||
"cite_error_references_missing_key": "<code><references></code>ত দিয়া \"$1\" নামৰ <code><ref></code> টেগ্টো পূৰ্বৰ পাঠ্যত ব্যৱহাৰ কৰা নাই।",
|
||||
"cite_error_references_no_key": "<code><references></code>ত দিয়া <code><ref></code> টেগৰ কোনো নাম আবণ্টন নাই।",
|
||||
"cite_error_empty_references_define": "<code><references></code>ত দিয়া \"$1\" নামৰ <code><ref></code> টেগৰ কোনো সমল নাই।"
|
||||
}
|
|
@ -1,29 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Esbardu",
|
||||
"Xuacu"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Añade les etiquetes <nowiki><ref[ name=id]></nowiki> y <nowiki><references/></nowiki> pa les cites",
|
||||
"cite_error": "Error de cita: $1",
|
||||
"cite_error_ref_numeric_key": "Etiqueta <code><ref></code> non válida; el nome nun pue ser un enteru simple, usa un títulu descriptivu",
|
||||
"cite_error_ref_no_key": "Etiqueta <code><ref></code> non válida; les referencies ensin conteníu han tener un nome",
|
||||
"cite_error_ref_too_many_keys": "Etiqueta <code><ref></code> non válida; nomes non válidos (p.ex. demasiaos)",
|
||||
"cite_error_ref_no_input": "Etiqueta <code><ref></code> non válida; les referencies ensin nome han tener conteníu",
|
||||
"cite_error_references_invalid_parameters": "Etiqueta <code><references></code> non válida; nun se permiten parámetros, usa <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Etiqueta <code><references></code> non válida;\nnamái se permite'l parámetru \"group\".\nUsa <code><references /></code>, o bien <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Etiquetes personalizaes agotaes.\nDefini más nel mensaxe <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>",
|
||||
"cite_error_no_link_label_group": "Nun queden más etiquetes d'enllaz personalizáu pal grupu \"$1\".\nDefine más nel mensaxe <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "Etiqueta <code><ref></code> non válida; nun se conseñó testu pa les referencies nomaes <code>$1</code>",
|
||||
"cite_error_included_ref": "Falta <code></ref></code> pa la etiqueta <code><ref></code>",
|
||||
"cite_error_group_refs_without_references": "Les etiquetes <code><ref></code> esisten pa un grupu llamáu \"$1\", pero nun s'alcontró la etiqueta <code><references group=\"$1\"/></code> correspondiente, o falta un cierre <code></ref></code>",
|
||||
"cite_error_references_group_mismatch": "La etiqueta <code><ref></code> en <code><references></code> tien un conflictu col atributu de grupu \"$1\".",
|
||||
"cite_error_references_missing_group": "La etiqueta <code><ref></code> definida en <code><references></code> tien l'atributu de grupu \"$1\" que nun apaez nel testu anterior.",
|
||||
"cite_error_references_missing_key": "La etiqueta <code><ref></code> col nome \"$1\" definida en <code><references></code> nun s'utiliza nel testu anterior.",
|
||||
"cite_error_references_no_key": "La etiqueta <code><ref></code> definida en <code><references></code> nun tien dengún atributu de nome.",
|
||||
"cite_error_empty_references_define": "La etiqueta <code><ref></code> definida en <code><references></code> col nome \"$1\" nun tien conteníu.",
|
||||
"cite_references_link_accessibility_label": "Saltar arriba",
|
||||
"cite_references_link_many_accessibility_label": "Saltar a:",
|
||||
"cite_error_refs_without_references_category-desc": "La páxina tien definíes <code><nowiki><ref></nowiki></code>s sin nengún grupu específicu, pero nun tien una etiqueta <code><nowiki><references /></nowiki></code> esplícita."
|
||||
}
|
|
@ -1,14 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Vago"
|
||||
]
|
||||
},
|
||||
"cite_reference_link_key_with_num": "$1_$2",
|
||||
"cite_reference_link_prefix": "sitat_istinad-",
|
||||
"cite_references_link_prefix": "sitat_qeyd-",
|
||||
"cite_reference_link": "<sup id=\"$1\" class=\"reference\">[[#$2|<nowiki>[</nowiki>$3<nowiki>]</nowiki>]]</sup>",
|
||||
"cite_references_link_many_format": "<sup>[[#$1|$2]]</sup>",
|
||||
"cite_references_link_many_sep": " ",
|
||||
"cite_references_link_many_and": " "
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Amir a57"
|
||||
]
|
||||
},
|
||||
"cite-desc": "گؤتورمهلر اوچون، <nowiki><ref[ name=id]></nowiki> ve <nowiki><references/></nowiki> ائلئمئنتلرینین علاوهلر",
|
||||
"cite_error": "قایناق خطاسی $1"
|
||||
}
|
|
@ -1,26 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Assele"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Төшөрмәләр өсөн <nowiki><ref[ name=id]></nowiki> һәм <nowiki><references/></nowiki> билдәләрен өҫтәй",
|
||||
"cite_error": "Өҙөмтә хатаһы: $1",
|
||||
"cite_error_ref_numeric_key": "<code><ref></code> билдәһе дөрөҫ түгел;\nисем бөтөн һан була алмай. Тасуирларлыҡ исем ҡулланығыҙ.",
|
||||
"cite_error_ref_no_key": "<code><ref></code> билдәһе дөрөҫ түгел;\nэстәлекһеҙ төшөрмәнең исеме булырға тейеш.",
|
||||
"cite_error_ref_too_many_keys": "<code><ref></code> билдәһе дөрөҫ түгел;\nисемдәр дөрөҫ түгел, бәлки, бигерәк күп",
|
||||
"cite_error_ref_no_input": "<code><ref></code> билдәһе дөрөҫ түгел;\nисемһеҙ төшөрмәнең эстәлеге булырға тейеш.",
|
||||
"cite_error_references_invalid_parameters": "<code><references></code> билдәһе дөрөҫ түгел;\nпараметрҙар рөхсәт ителмәй.\n<code><references /></code> ҡулланығыҙ.",
|
||||
"cite_error_references_invalid_parameters_group": "<code><references></code> билдәһе дөрөҫ түгел;\n\"group\" параметры ғына рөхсәт ителә.\n<code><references /></code> йәки <code><references group=\"...\" /></code> ҡулланығыҙ.",
|
||||
"cite_error_references_no_backlink_label": "Кире ҡайтарыу һылтанмалары өсөн хәрефтәр етмәй.\n<nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki> система хәбәрен киңәйтергә кәрәк.",
|
||||
"cite_error_no_link_label_group": "\"$1\" төркөмө өсөн ҡулланыусы һылтанмалары етмәй.\n[[MediaWiki:$2]] система хәбәрендә күберәк билдәләгеҙ.",
|
||||
"cite_error_references_no_text": "<code><ref></code> билдәһе дөрөҫ түгел;\n<code>$1</code> төшөрмәләре өсөн текст юҡ",
|
||||
"cite_error_included_ref": "<code><ref></code> билдәһе өсөн <code></ref></code> ябыу билдәһе юҡ",
|
||||
"cite_error_refs_without_references": "<code><ref></code> билдәһе бар, әммә <code><references/></code> билдәһе юҡ",
|
||||
"cite_error_group_refs_without_references": "\"$1\" төркөмө өсөн <code><ref></code> билдәһе бар, әммә <code><references group=\"$1\"/></code> билдәһе юҡ",
|
||||
"cite_error_references_group_mismatch": "<code><references></code> билдәһенең <code><ref></code> билдәһендә \"$1\" төркөмө атрибуты ҡаршылыҡтар тыуҙыра.",
|
||||
"cite_error_references_missing_group": "<code><references></code> билдәһенең <code><ref></code> билдәһендә \"$1\" төркөмө атрибуты үрҙәге текста осрамай.",
|
||||
"cite_error_references_missing_key": "<code><references></code> билдәһенең \"$1\" исемле <code><ref></code> билдәһе үрҙәге текста ҡулланылмай.",
|
||||
"cite_error_references_no_key": "<code><references></code> билдәһенең <code><ref></code> билдәһендә исем атрибуты юҡ.",
|
||||
"cite_error_empty_references_define": "<code><references></code> билдәһенең \"$1\" исемле <code><ref></code> билдәһенең эстәлеге юҡ."
|
||||
}
|
|
@ -1,22 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Mostafadaneshvar"
|
||||
]
|
||||
},
|
||||
"cite-desc": "اضفافه کنت<nowiki><ref[ name=id]></nowiki> و <nowiki><references/></nowiki> تگ, په ارجاع دهگ",
|
||||
"cite_error": "حطا ارجاع: $1",
|
||||
"cite_error_ref_numeric_key": "نامعتبر <code><ref></code>تگ;\nنام یک سادگین هوری نه نه بیت. یک توضیحی عنوانی استفاده کنیت",
|
||||
"cite_error_ref_no_key": "نامعتبر<code><ref></code>تگ;\nمراجع بی محتوا بایدن نامی داشته بنت",
|
||||
"cite_error_ref_too_many_keys": "نامعتبر<code><ref></code>تگ;\nنامعتبر نامان, په داب بازین",
|
||||
"cite_error_ref_no_input": "نامعتبر <code><ref></code> تگ;\nمراجع بی نام بایدن محتوا داشته بنت",
|
||||
"cite_error_references_invalid_parameters": "نامعتبر <code><references></code>تگ;\nهچ پارامتری مجاز نهنت.\nاستفاده کن چه <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "نامعتبر <code><references></code>تگ;\nپارامتر \"گروه\" فقط مجازنت.\nاستفاده کن چه <code><references /></code>, یا <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "هلگ برجسپان لینک عقب رسمی.\nگیشتر تعریف کن ته <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki> کوله",
|
||||
"cite_error_references_no_text": "نامعتبر<code><ref></code>تگ;\nپه نام ارجاع هچ متنی دهگ نه بیته <code>$1</code>",
|
||||
"cite_reference_link_prefix": "هل_مرج-",
|
||||
"cite_references_link_prefix": "ذکرـیادداشت-",
|
||||
"cite_references_link_many_format_backlink_labels": "ا ب پ ت ج چ خ د ر ز س ش غ ف ک ل م ن و ه ی",
|
||||
"cite_references_link_many_sep": "س",
|
||||
"cite_references_link_many_and": "و"
|
||||
}
|
|
@ -1,28 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Geopoet"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Minadugang nin <nowiki><ref[ name=id]></nowiki> asin <nowiki><references/></nowiki> na mga tatak, para sa mga toltolan",
|
||||
"cite_error": "Sambiton an kasalaan: $1",
|
||||
"cite_error_ref_numeric_key": "Imbalido an <code><ref></code> tatak; an pangaran dae puwede na magin sarong simplehon na bilog na numero. Maggamit nin sarong deskriptibong titulo",
|
||||
"cite_error_ref_no_key": "Imbalido an <code><ref></code> tatak; an mga toltolan na mayong kalamnan dapat magkaigwa nin pangaran",
|
||||
"cite_error_ref_too_many_keys": "Imbalido an <code><ref></code> tatak; imbalidong mga pangaran, e.g. grabe kadakol",
|
||||
"cite_error_ref_no_input": "Imbalido an <code><ref></code> tatak; an mga toltolan na mayong pangaran dapat magkaigwa nin kalamnan",
|
||||
"cite_error_references_invalid_parameters": "Imbalido an <code><references></code> tatak; mayong mga parametro an pinagtutugot. Maggamit nin <code><mga toltolan /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Imbalido an <code><references></code> tatak; an parametrong \"grupo\" sana an pinagtutugot. Maggamit nin <code><mga toltolan /></code>, o <code><mga toltolang grupo=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Naubusan nin pankostumbreng sugpon-panlikod na kamarkahan.\nPakahulugan nin dagdag tabi an <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki> mensahe.",
|
||||
"cite_error_no_link_label_group": "Naubusan nin pankostumbreng sugpon nin mga kamarkahan para sa grupo \"$1\".\nPakahulugan nin dagdag tabi an <nowiki>[[MediaWiki:$2]]</nowiki> mensahe.",
|
||||
"cite_error_references_no_text": "Imbalidong <code><ref></code> tatak; mayong teksto na ipinagtao para sa reperensiya na pinagngaranan na <code>$1</code>",
|
||||
"cite_error_included_ref": "Ipinagsasara <code></ref></code> nawawara para sa <code><ref></code> na tatak",
|
||||
"cite_error_refs_without_references": "<code><ref></code> mga tatak eksistido na, alagad mayo nin <code><references/></code> na tatak an nanagboan",
|
||||
"cite_error_group_refs_without_references": "<code><ref></code> mga tatak na eksistido para sa sarong grupo na pinagngaranan na \"$1\", alagad mayong kinasungkoan na <code><mga pinapanungdanan na grupo=\"$1\"/></code>na tatak an nanagboan, o sarong panarado <code></ref></code> an nawawara",
|
||||
"cite_error_references_group_mismatch": "<code><ref></code> tatak sa laog na <code><references></code> igwa nin pangrupong kumplikto sa hitsurahon na \"$1\".",
|
||||
"cite_error_references_missing_group": "<code><ref></code> tatak na pinagkahulugan sa <code><references></code> igwa nin pangrupong hitsurahon na \"$1\" na dae ipinapahiling sa nakaaging teksto.",
|
||||
"cite_error_references_missing_key": "<code><ref></code> tatak na igwang pangaran na \"$1\" na pinagkahulugan sa <code><references></code> na dae pinaggagamit sa nakaaging teksto.",
|
||||
"cite_error_references_no_key": "<code><ref></code> tatak na pinagkahulugan sa <code><references></code> na mayo nin hitsurahon sa pangaran.",
|
||||
"cite_error_empty_references_define": "<code><ref></code> tatak na pinagkahulugan sa <code><references></code> na igwang pangaran na \"$1\" na mayo tabing kalamnan.",
|
||||
"cite_references_link_accessibility_label": "Lukso paitaas",
|
||||
"cite_references_link_many_accessibility_label": "Lukso paitaas paduman sa:"
|
||||
}
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"EugeneZelenko",
|
||||
"Jim-by",
|
||||
"Red Winged Duck",
|
||||
"Wizardist"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Дадае тэгі <nowiki><ref[ name=id]></nowiki> і <nowiki><references/></nowiki> для зносак",
|
||||
"cite_error": "Памылка цытаваньня: $1",
|
||||
"cite_error_ref_numeric_key": "Няслушны тэг <code><ref></code>;\nназва ня можа быць проста лікам, ужывайце апісальную назву",
|
||||
"cite_error_ref_no_key": "Няслушны тэг <code><ref></code>;\nпустыя тэгі <code>ref</code> мусяць мець назву",
|
||||
"cite_error_ref_too_many_keys": "Няслушны тэг <code><ref></code>;\nняслушныя назвы, ці іх было зашмат",
|
||||
"cite_error_ref_no_input": "Няслушны тэг <code><ref></code>;\nкрыніцы бяз назваў мусяць мець зьмест",
|
||||
"cite_error_references_invalid_parameters": "Няслушны тэг <code><references></code>;\nнедазволеныя парамэтры.\nКарыстайцеся <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Няслушны тэг <code><references></code>;\nдазволена карыстацца толькі парамэтрам «group».\nКарыстайцеся <code><references /></code>, ці <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Не хапае сымбаляў для адваротных спасылак.\nНеабходна пашырыць сыстэмнае паведамленьне <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>",
|
||||
"cite_error_no_link_label_group": "Скончыліся нестандартныя меткі спасылак для групы «$1».\nВызначыце болей у паведамленьні <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "Няслушны тэг <code><ref></code>;\nняма тэксту ў назьве зносак <code>$1</code>",
|
||||
"cite_error_included_ref": "Няма закрываючага тэга <code></ref></code> пасьля адкрытага тэга <code><ref></code>",
|
||||
"cite_error_refs_without_references": "Тэг <code><ref></code> існуе, але ня знойдзена тэга <code><references/></code>",
|
||||
"cite_error_group_refs_without_references": "Тэг <code><ref></code> існуе для групы «$1», але адпаведнага тэга <code><references group=\"$1\"/></code> ня знойдзена. Магчыма, адсутнічае фінальны тэг <code></ref></code>",
|
||||
"cite_error_references_group_mismatch": "Тэг <code><ref></code> у <code><references></code> утрымлівае канфліктуючы атрыбут групы «$1».",
|
||||
"cite_error_references_missing_group": "Тэг <code><ref></code> вызначаны ў <code><references></code> утрымлівае атрыбут групы «$1», які раней не выкарыстоўваўся ў тэксьце.",
|
||||
"cite_error_references_missing_key": "Тэг <code><ref></code> з назвай «$1» вызначаны ў <code><references></code> не выкарыстоўваўся ў папярэднім тэксьце.",
|
||||
"cite_error_references_no_key": "Тэг <code><ref></code> вызначаны ў <code><references></code> ня мае атрыбуту назвы.",
|
||||
"cite_error_empty_references_define": "Тэг <code><ref></code> вызначаны ў <code><references></code> з назвай «$1» ня мае зьместу.",
|
||||
"cite_references_link_accessibility_label": "Угару",
|
||||
"cite_references_link_many_accessibility_label": "Угару да:"
|
||||
}
|
|
@ -1,22 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Borislav",
|
||||
"DCLXVI",
|
||||
"Spiritia"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Добавя етикетите <nowiki><ref[ name=id]></nowiki> и <nowiki><references/></nowiki>, подходящи за цитиране",
|
||||
"cite_error": "Грешка при цитиране: $1",
|
||||
"cite_error_ref_numeric_key": "'''Грешка в етикет <code><ref></code>:''' името не може да бъде число, използва се описателно име",
|
||||
"cite_error_ref_no_key": "'''Грешка в етикет <code><ref></code>:''' етикетите без съдържание трябва да имат име",
|
||||
"cite_error_ref_too_many_keys": "'''Грешка в етикет <code><ref></code>:''' грешка в името, например повече от едно име на етикета",
|
||||
"cite_error_ref_no_input": "'''Грешка в етикет <code><ref></code>:''' етикетите без име трябва да имат съдържание",
|
||||
"cite_error_references_invalid_parameters": "'''Грешка в етикет <code><references></code>:''' използва се без параметри, така: <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Невалиден етикет <code><references></code>;\nпозволен е само параметър \"group\".\nИзползвайте <code><references /></code> или <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Изчерпани са специалните етикети за обратна референция.\nОще етикети могат да се дефинират в системното съобщение <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>.",
|
||||
"cite_error_references_no_text": "'''Грешка в етикет <code><ref></code>:''' не е подаден текст за бележките на име <code>$1</code>",
|
||||
"cite_error_included_ref": "Липсва затварящ етикет <code></ref></code> след отварящия етикет <code><ref></code>",
|
||||
"cite_error_refs_without_references": "Присъстват етикети <code><ref></code>; липсва етикет <code><references/></code>",
|
||||
"cite_error_group_refs_without_references": "Присъстват етикети <code><ref></code> за групата \"$1\"; но липсва съответният етикет <code><references group=\"$1\"/></code>"
|
||||
}
|
|
@ -1,25 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Aftab1995",
|
||||
"Bellayet",
|
||||
"Nasir8891",
|
||||
"Zaheen"
|
||||
]
|
||||
},
|
||||
"cite-desc": "উদ্ধৃতির জন্য, <nowiki><ref[ name=id]></nowiki> এবং <nowiki><references/></nowiki> ট্যাগসমূহ যোগ করুন",
|
||||
"cite_error": "উদ্ধৃতি ত্রুটি: $1",
|
||||
"cite_error_ref_numeric_key": "অবৈধ <code><ref></code> ট্যাগ; নাম কোন সরল পূর্ণসংখ্যা হতে পারবেনা, একটি বিবরণমূলক শিরোনাম ব্যবহার করুন",
|
||||
"cite_error_ref_no_key": "অবৈধ <code><ref></code> ট্যাগ; বিষয়বস্তুহীন ref সমূহের অবশ্যই নাম থাকতে হবে",
|
||||
"cite_error_ref_too_many_keys": "অবৈধ <code><ref></code> ট্যাগ; অবৈধ নাম (যেমন- সংখ্যাতিরিক্ত)",
|
||||
"cite_error_ref_no_input": "অবৈধ <code><ref></code> ট্যাগ; নামবিহীন ref সমূহের অবশ্যই বিষয়বস্তু থাকতে হবে",
|
||||
"cite_error_references_invalid_parameters": "অবৈধ <code><ref></code> ট্যাগ; কোন প্যারামিটার অনুমোদিত নয়, <code><references /></code> ব্যবহার করুন",
|
||||
"cite_error_references_invalid_parameters_group": "ত্রুটিপূর্ণ <code><references></code> ট্যাগ;\nকেবলমাত্র \"group\" প্যারামিটার ব্যবহার কর যাবে।\n<code><references /></code>, অথবা <code><references group=\"...\" /></code> ব্যবহার করুন",
|
||||
"cite_error_references_no_backlink_label": "পছন্দমাফিক ব্যাকলিংক লেবেলের সংখ্যা ফুরিয়ে গেছে।\n<nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki> বার্তায় আরও সংজ্ঞায়িত করুন",
|
||||
"cite_error_no_link_label_group": "গ্রুপ \"$1\" এর জন্য কাস্টম লিংক ব্যবহারের সীমানা পেরিয়েছে।\n<nowiki>[[MediaWiki:$2]]</nowiki> বার্তায় আরও সজ্ঞায়িত করুন।",
|
||||
"cite_error_references_no_text": "অবৈধ <code><ref></code> ট্যাগ; <code>$1</code> নামের ref গুলির জন্য কোন টেক্সট প্রদান করা হয়নি",
|
||||
"cite_error_included_ref": "<code><ref></code> ট্যাগের ক্ষেত্রে <code></ref></code> ট্যাগ যোগ করা হয়নি",
|
||||
"cite_error_refs_without_references": "<code><ref></code> ট্যাগ রয়েছে, কিন্তু কোনো <code><references/></code> ট্যাগ নেই",
|
||||
"cite_error_group_refs_without_references": "\"$1\" নামের গ্রুপের <code><ref></code> ট্যাগ রয়েছে, কিন্তু এর জন্য <code><references group=\"$1\"/></code> ট্যাগ দেয়া হয়নি",
|
||||
"cite_error_references_group_mismatch": "\"$1\" গ্রুপের ক্ষেত্রে <code><ref></code> ট্যাগ <code><references></code> ট্যাগের অংশে ব্যবহারে সমস্যা সৃষ্টি হয়েছে।"
|
||||
}
|
|
@ -1,29 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Fohanno",
|
||||
"Fulup"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Ouzhpennañ a ra ar balizennoù <nowiki><ref[ name=id]></nowiki> ha <nowiki><references/></nowiki>, evit an arroudoù.",
|
||||
"cite_error": "Fazi arroud : $1",
|
||||
"cite_error_ref_numeric_key": "Fazi implijout ar valizenn <code><ref></code> ;\nn'hall ket an anv bezañ un niver anterin. Grit gant un titl deskrivus",
|
||||
"cite_error_ref_no_key": "Fazi implijout ar valizenn <code><ref></code> ;\nret eo d'an daveennoù goullo kaout un anv",
|
||||
"cite_error_ref_too_many_keys": "Fazi implijout ar valizenn <code><ref></code> ;\nanv direizh, niver re uhel da skouer",
|
||||
"cite_error_ref_no_input": "Fazi implijout ar valizenn <code><ref></code> ;\nret eo d'an daveennoù hep anv bezañ danvez enno",
|
||||
"cite_error_references_invalid_parameters": "Fazi implijout ar valizenn <code><ref></code> ;\nn'eo aotreet arventenn ebet.\nGrit gant ar valizenn <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Fazi implijout ar valizenn <code><ref></code> ;\nn'eus nemet an arventenn \"strollad\" zo aotreet.\nGrit gant ar valizenn <code><references /></code>, pe <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "N'eus ket a dikedennoù personelaet mui.\nSpisait un niver brasoc'h anezho er gemennadenn <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>",
|
||||
"cite_error_no_link_label_group": "Tikedenn liamm bersonelaet ebet ken evit ar strollad \"$1\".\nTermenit re all e kemennadenn <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "Balizenn <code><ref></code> direizh ;\nne oa bet lakaet tamm testenn ebet evit ar valizenn <code>$1</code>",
|
||||
"cite_error_included_ref": "Kod digeriñ <code></ref></code> hep kod serriñ <code><ref></code>",
|
||||
"cite_error_refs_without_references": "<code><ref></code> balizennoù zo, met n'eus bet kavet balizenn <code><references/></code> ebet",
|
||||
"cite_error_group_refs_without_references": "<code><ref></code> balizennoù zo evit ur strollad anvet \"$1\", met n'eus bet kavet balizenn <code><references group=\"$1\"/></code> ebet o klotañ",
|
||||
"cite_error_references_group_mismatch": "Gant ar valizenn <code><ref></code> e <code><references></code> emañ an dezverk strollad trubuilhus \"$1\".",
|
||||
"cite_error_references_missing_group": "<code><ref></code> ar valizenn termenet e <code><references></code> eo dezhi un dezverk strollad \"$1\" na gaver ket en destenn a-raok.",
|
||||
"cite_error_references_missing_key": "N'eo ket bet implijet en destenn gent ar <code><ref></code> valizenn hec'h anv \"$1\" termenet e <code><references></code>.",
|
||||
"cite_error_references_no_key": "<code><ref></code> ar valizenn termenet e <code><references></code> n'he deus dezverk anv ebet.",
|
||||
"cite_error_empty_references_define": "<code><ref></code> ar valiezenn termenet e <code><references></code> dezhi an anv a \"$1\" zo goullo.",
|
||||
"cite_references_link_accessibility_label": "Lammat",
|
||||
"cite_references_link_many_accessibility_label": "Lammat da :"
|
||||
}
|
|
@ -1,27 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"CERminator",
|
||||
"Reedy",
|
||||
"KWiki"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Dodaje oznake <nowiki><ref[ name=id]></nowiki> i <nowiki><references/></nowiki> za citiranje",
|
||||
"cite_error": "Greška kod citiranja: $1",
|
||||
"cite_error_ref_numeric_key": "Nevaljana oznaka <code><ref></code>;\nnaslov ne može biti jednostavni cijeli broj. Koristite opisni naslov",
|
||||
"cite_error_ref_no_key": "Nevaljana oznaka <code><ref></code>;\nreference bez sadržaja moraju imati naziv",
|
||||
"cite_error_ref_too_many_keys": "Nevaljana oznaka <code><ref></code>;\nnevaljani nazivi, npr. možda ih je previše",
|
||||
"cite_error_ref_no_input": "Nevaljana oznaka <code><ref></code>;\nreference bez naziva moraju imati sadržaj",
|
||||
"cite_error_references_invalid_parameters": "Nevaljana oznaka <code><references></code>;\nnisu dozvoljeni parametri.\nKoristite <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Nevaljana oznaka <code><references></code>\ndozvoljen je samo parametar \"group\".\nKoristite <code><references /></code> ili <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Ponestalo je prilagođenih naslova backlinkova.\nDefinirajte ih još u <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki> poruci",
|
||||
"cite_error_no_link_label_group": "Nedovoljan broj proizvoljnih naslova linkova za grupu \"$1\".\nDefinišite više putem poruke <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "Nevaljana oznaka <code><ref></code>;\nnije naveden tekst za reference s imenom <code>$1</code>",
|
||||
"cite_error_included_ref": "Nedostaje oznaka za zatvaranje <code></ref></code> nakon <code><ref></code>",
|
||||
"cite_error_group_refs_without_references": "<code><ref></code> oznake postoje za grupu pod imenom \"$1\", ali nije pronađena pripadajuća oznaka <code><references group=\"$1\"/></code>",
|
||||
"cite_error_references_group_mismatch": "<code><ref></code> oznaka u <code><references></code> ima atribut grupe konflikta \"$1\".",
|
||||
"cite_error_references_missing_group": "<code><ref></code> oznaka definisana u <code><references></code> ima atribut grupe \"$1\" koji se ne pojavljuje u ranijem tekstu.",
|
||||
"cite_error_references_missing_key": "<code><ref></code> oznaka s imenom \"$1\" definirana u <code><references></code> nije korištena u ranijem tekstu.",
|
||||
"cite_error_references_no_key": "<code><ref></code> oznaka definisana u <code><references></code> nema imenski atribut.",
|
||||
"cite_error_empty_references_define": "<code><ref></code> oznaka definirana u <code><references></code> s imenom \"$1\" nema nikakvog sadržaja."
|
||||
}
|
|
@ -1,29 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Davidpar",
|
||||
"Jordi Roqué",
|
||||
"SMP",
|
||||
"Vriullop"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Afegeix les etiquetes <nowiki><ref[ name=id]></nowiki> i <nowiki><references/></nowiki>, per a cites",
|
||||
"cite_error": "Error de citació: $1",
|
||||
"cite_error_ref_numeric_key": "Etiqueta <code><ref></code> no vàlida;\nel nom no pot ser un nombre. Empreu una paraula o un títol descriptiu",
|
||||
"cite_error_ref_no_key": "Etiqueta <code><ref></code> no vàlida;\nles refs sense contingut han de tenir nom",
|
||||
"cite_error_ref_too_many_keys": "Etiqueta <code><ref></code> no vàlida;\nempreu l'estructura <code><ref name=\"Nom\"></code>",
|
||||
"cite_error_ref_no_input": "Etiqueta <code><ref></code> no vàlida; \nles referències sense nom han de tenir contingut",
|
||||
"cite_error_references_invalid_parameters": "Etiqueta <code><references></code> no vàlida; \nno es permeten paràmetres. \nUseu <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Etiqueta <code><references></code> no vàlida;\núnicament es permet el paràmetre \"group\".\nUseu <code><references /></code>, o <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Hi ha massa etiquetes personalitzades.\nSe'n poden definir més a <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>",
|
||||
"cite_error_no_link_label_group": "No hi ha etiquetes vincle personalitzat per al grup \"$1\".\nDefineix més al missatge <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "Etiqueta <code><ref></code> no vàlida;\nno s'ha proporcionat text per les refs amb l'etiqueta <code>$1</code>",
|
||||
"cite_error_included_ref": "Es tanca el <code></ref></code> que manca per una etiqueta <code><ref></code>",
|
||||
"cite_error_refs_without_references": "Hi ha etiquetes <code><ref></code> però no s'ha trobat cap etiqueta <code><references/></code>",
|
||||
"cite_error_group_refs_without_references": "Existeixen etiquetes <code><ref></code> pel grup «$1» però no l'etiqueta <code><references group=\"$1\"/></code> corresponent",
|
||||
"cite_error_references_group_mismatch": "L'etiqueta <code><ref></code> a <code><references></code> té un conflicte amb l'atribut de grup \"$1\".",
|
||||
"cite_error_references_missing_group": "L'etiqueta <code><ref></code> definida a <code><references></code> té l'atribut de grup \"$1\" que no apareix en el text anterior.",
|
||||
"cite_error_references_missing_key": "L'etiqueta <code><ref></code> amb el nom \"$1\" definida a <code><references></code> no s'utilitza en el text anterior.",
|
||||
"cite_error_references_no_key": "L'etiqueta <code><ref></code> definida a <code><references></code> no té cap atribut de nom.",
|
||||
"cite_error_empty_references_define": "L'etiqueta <code><ref></code> definida a <code><references></code> amb el nom \"$1\" no té contingut."
|
||||
}
|
|
@ -1,14 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Умар"
|
||||
]
|
||||
},
|
||||
"cite-desc": "<nowiki><ref[ name=id]></nowiki> а <nowiki><references/></nowiki> тегаш тӀетовжорашан тӀетуху",
|
||||
"cite_error": "ГӀалат дешнаш далорна $1",
|
||||
"cite_error_references_no_text": "Тег <code><ref></code> нийса яц; тIетовжаран <code>$1</code> йоза яздина дац",
|
||||
"cite_error_refs_without_references": "Йолуш йолу тегаца <code><ref></code> йогӀуш йолу тег <code><references/></code> ца карийна",
|
||||
"cite_error_group_refs_without_references": "Группан «$1» йолуш йолу тегашца <code><ref></code> йогӀуш йолу тег <code><references group=\"$1\"/></code> ца карийна",
|
||||
"cite_references_link_accessibility_label": "Дехьа гӀо",
|
||||
"cite_references_link_many_accessibility_label": "Дехьа гӀо:"
|
||||
}
|
|
@ -1,33 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Danny B.",
|
||||
"Li-sung",
|
||||
"Littledogboy",
|
||||
"Matěj Grabovský",
|
||||
"Mormegil",
|
||||
"Sp5uhe"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Přidává značky <nowiki><ref[ name=\"id\"]></nowiki> a <nowiki><references /></nowiki> na označení citací",
|
||||
"cite_error": "Chybná citace: $1",
|
||||
"cite_error_ref_numeric_key": "Chyba v tagu <code><ref></code>; názvem nesmí být prosté číslo, použijte popisné označení",
|
||||
"cite_error_ref_no_key": "Chyba v tagu <code><ref></code>; prázdné citace musí obsahovat název",
|
||||
"cite_error_ref_too_many_keys": "Chyba v tagu <code><ref></code>; chybné názvy, např. je jich příliš mnoho",
|
||||
"cite_error_ref_no_input": "Chyba v tagu <code><ref></code>; citace bez názvu musí mít vlastní obsah",
|
||||
"cite_error_references_invalid_parameters": "Chyba v tagu <code><references></code>; zde není dovolen parametr, použijte <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Neplatná značka <tt><references></tt>;\nje povolen pouze parametr „group“.\nPoužijte <tt><references /></tt> nebo <tt><references group=\"...\" /></tt>.",
|
||||
"cite_error_references_no_backlink_label": "Došla označení zpětných odkazů, přidejte jich několik do zprávy <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>",
|
||||
"cite_error_no_link_label_group": "Došly definované značky pro skupinu „$1“.\nZvyšte jejich počet ve zprávě <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "Chyba v tagu <code><ref></code>; citaci označené <code>$1</code> není určen žádný text",
|
||||
"cite_error_included_ref": "Chybí ukončovací <code></ref></code> k tagu <code><ref></code>",
|
||||
"cite_error_group_refs_without_references": "Nalezena značka <code><ref></code> pro skupinu „$1“, ale neexistuje příslušná značka <code><references group=\"$1\"/></code> nebo chybí zavírací <code></ref></code>.",
|
||||
"cite_error_references_group_mismatch": "Značka <code><ref></code> uvnitř <code><references></code> má definovánu jinou skupinu „$1“.",
|
||||
"cite_error_references_missing_group": "Značka <code><ref></code> uvnitř <code><references></code> používá skupinu „$1“, která se v předchozím textu neobjevuje.",
|
||||
"cite_error_references_missing_key": "Na <code><ref></code> se jménem „$1“ definovaný uvnitř <code><references></code> nejsou v předchozím textu žádné odkazy.",
|
||||
"cite_error_references_no_key": "U značky <code><ref></code> definované uvnitř <code><references></code> chybí atribut <code>name</code>.",
|
||||
"cite_error_empty_references_define": "U značky <code><ref></code> s názvem „$1“ definované uvnitř <code><references></code> chybí obsah.",
|
||||
"cite_references_link_accessibility_label": "Skočit nahoru",
|
||||
"cite_references_link_many_accessibility_label": "Skočit nahoru k:",
|
||||
"cite_error_refs_without_references_category-desc": "Tato stránka obsahuje značky <code><nowiki><ref></nowiki></code> bez určené skupiny, ale neobsahuje značku <code><nowiki><references /></nowiki></code>."
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"ОйЛ"
|
||||
]
|
||||
},
|
||||
"cite_references_link_many_format_backlink_labels": "а б в г д є ж ꙃ ꙁ и і к л м н о п р с т ф х ѡ ц ч ш щ ъ ꙑ ь ѣ ю ꙗ ѥ ѧ ѫ ѩ ѭ ѯ ѱ ѳ ѵ ѷ аа аб ав аг ад ає аж аꙁ аꙃ аи аі ак ал ам ан ао ап ар ас ат аф ах аѡ ац ач аш ащ аъ аꙑ аь аѣ аю аꙗ аѥ аѧ аѫ аѩ аѭ аѯ аѱ аѳ аѵ аѷ"
|
||||
}
|
|
@ -1,29 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Lloffiwr",
|
||||
"Xxglennxx"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Yn ychwanegu tagiau <nowiki><ref[ name=id]></nowiki> a <nowiki><references/></nowiki>, ar gyfer cyfeiriadau",
|
||||
"cite_error": "Gwall cyfeirio: $1",
|
||||
"cite_error_ref_numeric_key": "Tag <code><ref></code> annilys;\nni all enw fod yn rif yn unig. Defnyddiwch deitl disgrifiadol.",
|
||||
"cite_error_ref_no_key": "Tag <code><ref></code> annilys;\nrhaid i dagiau ref sydd heb gynnwys iddynt gael enw",
|
||||
"cite_error_ref_too_many_keys": "Tag <code><ref></code> annilys;\nenwau annilys; e.e. gormod ohonynt",
|
||||
"cite_error_ref_no_input": "Tag <code><ref></code> annilys;\nrhaid i dagiau ref heb enw iddynt gynnwys rhywbeth",
|
||||
"cite_error_references_invalid_parameters": "Tag <code><references></code> annilys;\nni chaniateir paramedrau.\nDefnyddiwch <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Tag <code><references></code> annilys;\ndim ond y paramedr \"group\" a ganiateir.\nDefnyddiwch <code><references /></code>, neu <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Dim rhagor o labeli ôl-gyswllt ar gael.\nDiffiniwch ragor ohonynt yn y neges <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>",
|
||||
"cite_error_no_link_label_group": "Wedi rhedeg allan o labeli dolenni unigryw ar gyfer y grŵp \"$1\".\nGallwch ddiffinio rhagor ohonynt yn y neges <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "Tag <code><ref></code> annilys;\nni osodwyd unrhyw destun ar gyfer y 'ref' <code>$1</code>",
|
||||
"cite_error_included_ref": "<code></ref></code> clo yn eisiau ar gyfer y tag <code><ref></code>",
|
||||
"cite_error_refs_without_references": "Mae tagiau <code><ref></code> yn bresennol, ond dim tag <code><references/></code>",
|
||||
"cite_error_group_refs_without_references": "Mae tagiau <code><ref></code> yn bresennol ar gyfer y grwp \"$1\", ond ni chafwyd tag <code><references/></code>, ynteu roedd <code></ref></code> terfynol yn eisiau.",
|
||||
"cite_error_references_group_mismatch": "Mae gan y tag <code><ref></code> oddi mewn i <code><references></code> briodoledd grŵp anghyson \"$1\".",
|
||||
"cite_error_references_missing_group": "Mae gan y tag <code><ref></code> a ddiffinir yn <code><references></code> briodoledd grŵp \"$1\" nag ydyw'n cael ei ddefnyddio yn y testun cynt.",
|
||||
"cite_error_references_missing_key": "Ni ddefnyddir y tag <code><ref></code> o'r enw \"$1\", a ddiffinir yn <code><references></code>, yn y testun blaenorol.",
|
||||
"cite_error_references_no_key": "Nid oes dim priodoledd o enw gan y tag <code><ref></code> a ddiffinir yn <code><references></code>",
|
||||
"cite_error_empty_references_define": "Does dim byd yn y tag <code><ref></code> a'r enw \"$1\" arno, sydd wedi ei ddiffinio oddi mewn i dagiau <code><references></code>.",
|
||||
"cite_references_link_accessibility_label": "Neidio am lan",
|
||||
"cite_references_link_many_accessibility_label": "Neidio lan i:"
|
||||
}
|
|
@ -1,32 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Byrial",
|
||||
"Christian List",
|
||||
"Emilkris33",
|
||||
"Morten LJ",
|
||||
"Peter Alberti"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Tilføjer <nowiki><ref[ name=id]></nowiki> og <nowiki><references/></nowiki>-elementer til referencer.",
|
||||
"cite_error": "Fodnotefejl: $1",
|
||||
"cite_error_ref_numeric_key": "Ugyldigt <code><ref></code>-tag; \"name\" kan ikke være et simpelt heltal, brug en beskrivende titel",
|
||||
"cite_error_ref_no_key": "Ugyldigt <code><ref></code>-tag: Et <code><ref></code>-tag uden indhold skal have et navn",
|
||||
"cite_error_ref_too_many_keys": "Ugyldigt <code><ref></code>-tag: Ugyldige navne, fx for mange",
|
||||
"cite_error_ref_no_input": "Ugyldigt <code><ref></code>-tag: Et <code><ref></code>-tag uden navn skal have indhold",
|
||||
"cite_error_references_invalid_parameters": "Ugyldigt <code><references></code>-tag: Parametre er ikke tilladt, brug i stedet <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Ugyldigt <code><references></code>-tag; den eneste tilladte parameter er \"group\".\nBrug <code><references /></code> eller <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Løb tør for backlink-etiketter.\nDefiner flere i beskeden <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>.",
|
||||
"cite_error_no_link_label_group": "Løb tør for tilpassede linketiketter til gruppen \"$1\".\nDefiner flere i beskeden <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "Ugyldigt <code><ref></code>-tag: Der er ikke specificeret nogen fodnotetekst til navnet <code>$1</code>",
|
||||
"cite_error_included_ref": "Afsluttende <code></ref></code> mangler for <code><ref></code>-tag",
|
||||
"cite_error_refs_without_references": "<code><ref></code>-tags findes, men ingen <code><references/></code>-tag blev fundet",
|
||||
"cite_error_group_refs_without_references": "<code><ref></code>-tags eksisterer for en gruppe betegnet \"$1\", men der blev ikke fundet et tilsvarende <code><references group=\"$1\"/></code>-tag, eller et afsluttende <code></ref></code>-tag mangler",
|
||||
"cite_error_references_group_mismatch": "<code><ref></code>-tag inden i <code><references></code> har modstridende gruppe-attribut \"$1\".",
|
||||
"cite_error_references_missing_group": "<code><ref></code>-tag defineret inden i <code><references></code> har gruppe-attributten \"$1\", som ikke anvendes i den ovenstående tekst.",
|
||||
"cite_error_references_missing_key": "<code><ref></code>-tag med navn \"$1\" defineret inden i <code><references></code> anvendes ikke i den ovenstående tekst.",
|
||||
"cite_error_references_no_key": "<code><ref></code>-tag defineret inden i <code><references></code> har ikke en navne-attribut.",
|
||||
"cite_error_empty_references_define": "<code><ref></code>-tag defineret inden i <code><references></code> med navnet \"$1\" har ikke noget indhold.",
|
||||
"cite_references_link_accessibility_label": "Hoppe op",
|
||||
"cite_references_link_many_accessibility_label": "Hoppe op til:"
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Geitost"
|
||||
]
|
||||
},
|
||||
"cite_error_references_invalid_parameters": "Ungültige <tt><references></tt>-Verwendung: Es sind keine zusätzlichen Parameter erlaubt, verwende ausschliesslich <tt><nowiki><references /></nowiki></tt>.",
|
||||
"cite_error_included_ref": "Es fehlt ein schliessendes <code></ref></code>"
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Imre",
|
||||
"Kghbln",
|
||||
"Raimond Spekking"
|
||||
]
|
||||
},
|
||||
"cite_error_ref_numeric_key": "Ungültige Verwendung von <code><ref></code>: Der Parameter „name“ darf kein reiner Zahlenwert sein. Benutzen Sie einen beschreibenden Namen.",
|
||||
"cite_error_references_invalid_parameters": "Ungültige Verwendung von <code><references></code>: Es sind keine Parameter möglich. Verwenden Sie ausschließlich <code><nowiki><references /></nowiki></code>.",
|
||||
"cite_error_references_invalid_parameters_group": "Ungültige Verwendung von <code><references></code>: Nur der Parameter „group“ ist möglich. Verwenden Sie entweder <code><references /></code> oder <code><references group=\"…\" /></code>."
|
||||
}
|
|
@ -1,34 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Kghbln",
|
||||
"Metalhead64",
|
||||
"Purodha",
|
||||
"Raimond Spekking",
|
||||
"The Evil IP address",
|
||||
"Umherirrender",
|
||||
"TMg"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Ergänzt die Tags <code><nowiki><ref[ name=id]></nowiki></code> und <code><nowiki><references /></nowiki></code> für Referenzierungen in Wikiseiten",
|
||||
"cite_error": "Referenzfehler: $1",
|
||||
"cite_error_ref_numeric_key": "Ungültige Verwendung von <code><ref></code>: Der Parameter „name“ darf kein reiner Zahlenwert sein. Benutze einen beschreibenden Namen.",
|
||||
"cite_error_ref_no_key": "Ungültige Verwendung von <code><ref></code>: Der Parameter „ref“ ohne Inhalt muss einen Namen haben.",
|
||||
"cite_error_ref_too_many_keys": "Ungültige Verwendung von <code><ref></code>: Der Parameter „name“ ist ungültig oder zu lang.",
|
||||
"cite_error_ref_no_input": "Ungültige Verwendung von <code><ref></code>: Der Parameter „ref“ ohne Namen muss einen Inhalt haben.",
|
||||
"cite_error_references_invalid_parameters": "Ungültige Verwendung von <code><references></code>: Es sind keine Parameter möglich. Verwende ausschließlich <code><nowiki><references /></nowiki></code>.",
|
||||
"cite_error_references_invalid_parameters_group": "Ungültige Verwendung von <code><references></code>: Nur der Parameter „group“ ist möglich. Verwende entweder <code><references /></code> oder <code><references group=\"…\" /></code>.",
|
||||
"cite_error_references_no_backlink_label": "Eine Referenz der Form <code><ref name=\"…\" /></code> wird öfter benutzt als Buchstaben vorhanden sind. Ein Administrator muss die Systemnachricht <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki> um weitere Buchstaben/Zeichen ergänzen.",
|
||||
"cite_error_no_link_label_group": "Für die Gruppe „$1“ sind keine benutzerdefinierten Linkbezeichnungen mehr verfügbar.\nEin Administrator muss weitere mit der Systemnachricht <nowiki>[[MediaWiki:$2]]</nowiki> festlegen.",
|
||||
"cite_error_references_no_text": "Es ist ein ungültiger <code><ref></code>-Tag vorhanden: Für die Referenz namens <code>$1</code> wurde kein Text angegeben.",
|
||||
"cite_error_included_ref": "Für ein <code><ref></code>-Tag fehlt ein schließendes <code></ref></code>-Tag.",
|
||||
"cite_error_group_refs_without_references": "Es sind <code><ref></code>-Tags für die Gruppe „$1“ vorhanden, jedoch wurde kein dazugehöriges <code><references group=\"$1\" /></code>-Tag gefunden oder ein schließendes <code></ref></code> fehlt.",
|
||||
"cite_error_references_group_mismatch": "Das <code><ref></code>-Tag in <code><references></code> enthält das kollidierende Attribut „$1“.",
|
||||
"cite_error_references_missing_group": "Das in <code><references></code> definierte <code><ref></code>-Tag hat das Gruppenattribut „$1“, das nicht im vorausgehenden Text verwendet wird.",
|
||||
"cite_error_references_missing_key": "Das in <code><references></code> definierte <code><ref></code>-Tag mit dem Namen „$1“ wird im vorausgehenden Text nicht verwendet.",
|
||||
"cite_error_references_no_key": "Das in <code><references></code> definierte <code><ref></code>-Tag hat kein Namensattribut.",
|
||||
"cite_error_empty_references_define": "Das in <code><references></code> definierte <code><ref></code>-Tag mit dem Namen „$1“ weist keinen Inhalt auf.",
|
||||
"cite_references_link_accessibility_label": "Hochspringen",
|
||||
"cite_references_link_many_accessibility_label": "Hochspringen nach:",
|
||||
"cite_error_refs_without_references_category-desc": "Die Seite hat mindestens ein definiertes <code><nowiki><ref></nowiki></code> ohne einer bestimmten Gruppe, hat jedoch kein ausdrückliches <code><nowiki><references /></nowiki></code>-Tag."
|
||||
}
|
|
@ -1,41 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Aspar",
|
||||
"Erdemaslancan",
|
||||
"Gorizon",
|
||||
"Xoser"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Qe çime mucnayîşî, etiketanê <nowiki><ref[ name=id]></nowiki> u <nowiki><references/></nowiki> de keno",
|
||||
"cite_error": "Ğeletê çime mucnayîşî: $1",
|
||||
"cite_error_ref_numeric_key": "Etiket <code><ref></code> ke raşt niyo;\nName nieşkeno biyo yew rekam. Çekuyan binuse",
|
||||
"cite_error_ref_no_key": "Etiket <code><ref></code> ke raşt niyo;\nEka kontent çini yo, gani yew name biyo",
|
||||
"cite_error_ref_too_many_keys": "Etiket <code><ref></code> ke raşt niyo;\nname raşt niyo, e.g. zaf esto",
|
||||
"cite_error_ref_no_input": "Etiket <code><ref></code> ke raşt niyo;\nEka name çini yo, gani kontent biyo",
|
||||
"cite_error_references_invalid_parameters": "Etiket <code><ref></code> ke raşt niyo;\nparametrayan ra destur çini yo.\n<code><references /></code> sero kar bike",
|
||||
"cite_error_references_invalid_parameters_group": "Etiket <code><ref></code> ke raşt niyo;\nparametrayan ra destur çini yo.\n<code><references /></code> sero kar bike, ya zi <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Linkanê Custom backlinkî hin çini yo.\nZerreyê mesajê <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>î de hewna tasvir bike",
|
||||
"cite_error_no_link_label_group": "Eka etiketinê linkê şexsi ser ena grubi \"$1\" ciniyo.\nZerre mesajê <nowiki>[[MediaWiki:$2]]</nowiki> de zafyer qise bike.",
|
||||
"cite_error_references_no_text": "Etiket <code><ref></code> ke raşt niyo;\nqe refs yew nuşte nidayiyo <code>$1</code>",
|
||||
"cite_error_included_ref": "<code><ref></code>Qandê etiketi <code></ref></code> racnayış kemiyo",
|
||||
"cite_error_refs_without_references": "etiketê <code><ref></code>î niesto, feqat etiketê <code><references/></code>î nidiyo",
|
||||
"cite_error_group_refs_without_references": "etiketé <code><ref></code>i niesto ser grubé $1'i, feqat etiketé <code><references/></code>dé \"$1\"/>nidiyo",
|
||||
"cite_error_references_group_mismatch": "etiketê <code><ref></code>î, zerre <code><references/></code> de ser grupê \"$1\"î konflikt keno.",
|
||||
"cite_error_references_missing_group": "etiketê <code><ref></code>î, zerre <code><references/></code> de tevsir biyo ke ser grupê \"$1\"î ke verni de nieseno.",
|
||||
"cite_error_references_missing_key": "etiketê <code><ref></code>î, zerre <code><references/></code> de tevisr biyo ser name \"$1\"î verni de niesto.",
|
||||
"cite_error_references_no_key": "etiketê <code><ref></code>î, zerre <code><references/></code> de tevsir biyo name xo çini yo.",
|
||||
"cite_error_empty_references_define": "etiketê <code><ref></code>î, zerre <code><references/></code> de tevsir biyo \"$1\" kontent xo çini yo.",
|
||||
"cite_reference_link_key_with_num": "$1_$2",
|
||||
"cite_reference_link_prefix": "sita_ref-",
|
||||
"cite_references_link_prefix": "sita_not-",
|
||||
"cite_reference_link": "<sup id=\"$1\" class=\"reference\">[[#$2|<nowiki>[</nowiki>$3<nowiki>]</nowiki>]]</sup>",
|
||||
"cite_references_link_one": "<li id=\"$1\"><span class=\"mw-cite-backlink\">[[#$2|↑]]</span> $3</li>",
|
||||
"cite_references_link_many": "<li id=\"$1\"><span class=\"mw-cite-backlink\">↑ $2</span> $3</li>",
|
||||
"cite_references_link_many_format": "<sup>[[#$1|$2]]</sup>",
|
||||
"cite_references_link_many_format_backlink_labels": "a b c d e f g h i j k l m n o p q r s t u v w x y z aa ab ac ad ae af ag ah ai aj ak al am an ao ap aq ar as at au av aw ax ay az ba bb bc bd be bf bg bh bi bj bk bl bm bn bo bp bq br bs bt bu bv bw bx by bz ca cb cc cd ce cf cg ch ci cj ck cl cm cn co cp cq cr cs ct cu cv cw cx cy cz da db dc dd de df dg dh di dj dk dl dm dn do dp dq dr ds dt du dv dw dx dy dz ea eb ec ed ee ef eg eh ei ej ek el em en eo ep eq er es et eu ev ew ex ey ez fa fb fc fd fe ff fg fh fi fj fk fl fm fn fo fp fq fr fs ft fu fv fw fx fy fz ga gb gc gd ge gf gg gh gi gj gk gl gm gn go gp gq gr gs gt gu gv gw gx gy gz ha hb hc hd he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy hz ia ib ic id ie if ig ih ii ij ik il im in io ip iq ir is it iu iv iw ix iy iz ja jb jc jd je jf jg jh ji jj jk jl jm jn jo jp jq jr js jt ju jv jw jx jy jz ka kb kc kd ke kf kg kh ki kj kk kl km kn ko kp kq kr ks kt ku kv kw kx ky kz la lb lc ld le lf lg lh li lj lk ll lm ln lo lp lq lr ls lt lu lv lw lx ly lz ma mb mc md me mf mg mh mi mj mk ml mm mn mo mp mq mr ms mt mu mv mw mx my mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt nu nv nw nx ny nz oa ob oc od oe of og oh oi oj ok ol om on oo op oq or os ot ou ov ow ox oy oz pa pb pc pd pe pf pg ph pi pj pk pl pm pn po pp pq pr ps pt pu pv pw px py pz qa qb qc qd qe qf qg qh qi qj qk ql qm qn qo qp qq qr qs qt qu qv qw qx qy qz ra rb rc rd re rf rg rh ri rj rk rl rm rn ro rp rq rr rs rt ru rv rw rx ry rz sa sb sc sd se sf sg sh si sj sk sl sm sn so sp sq sr ss st su sv sw sx sy sz ta tb tc td te tf tg th ti tj tk tl tm tn to tp tq tr ts tt tu tv tw tx ty tz ua ub uc ud ue uf ug uh ui uj uk ul um un uo up uq ur us ut uu uv uw ux uy uz va vb vc vd ve vf vg vh vi vj vk vl vm vn vo vp vq vr vs vt vu vv vw vx vy vz wa wb wc wd we wf wg wh wi wj wk wl wm wn wo wp wq wr ws wt wu wv ww wx wy wz xa xb xc xd xe xf xg xh xi xj xk xl xm xn xo xp xq xr xs xt xu xv xw xx xy xz ya yb yc yd ye yf yg yh yi yj yk yl ym yn yo yp yq yr ys yt yu yv yw yx yy yz za zb zc zd ze zf zg zh zi zj zk zl zm zn zo zp zq zr zs zt zu zv zw zx zy zz",
|
||||
"cite_references_link_many_sep": " ",
|
||||
"cite_references_link_many_and": " ",
|
||||
"cite_references_link_accessibility_label": "Ser çek",
|
||||
"cite_references_link_many_accessibility_label": "Ser çek:"
|
||||
}
|
|
@ -1,28 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Michawiki"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Pśidawa toflicce <nowiki><ref[ name=id]></nowiki> a <nowiki><references/></nowiki> za pódaśa zrědłow",
|
||||
"cite_error": "Referencna zmólka: $1",
|
||||
"cite_error_ref_numeric_key": "Njepłaśiwa toflicka <code><ref></code>;\nmě njamóžo jadnora licba byś. Wužyj wugroniwy titel",
|
||||
"cite_error_ref_no_key": "Njepłaśiwa toflicka <code><ref></code>;\n\"ref\" bźez wopśimjeśa musy mě měś",
|
||||
"cite_error_ref_too_many_keys": "Njepłaśiwa toflicka <code><ref></code>;\nnjepłaśiwe mjenja, na pś. pśewjele",
|
||||
"cite_error_ref_no_input": "Njepłaśiwa toflicka <code><ref></code>;\n\"ref\" bźez mjenja musy wopśimjeśe měś",
|
||||
"cite_error_references_invalid_parameters": "Njepłaśiwa toflicka <code><references></code>;\nžedne parametry dowólone.\nWužyj <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Njepłaśiwa toflicka <code><references></code>;\njano parameter \"group\" jo dowólony,\nWužyj <code><references /></code> abo <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Swójske etikety slědkwótkazow wupócerane.\nDefiněruj dalšne w powěsći <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>",
|
||||
"cite_error_no_link_label_group": "Žedne swójske wótkazowe etikety za \"$1\" wěcej k dispoziciji.\nDefiněruj dalšne w powěsći <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "Njepłaśiwa toflicka <code><ref></code>;\nza ref z mjenim <code>$1</code> njejo se tekst pódał",
|
||||
"cite_error_included_ref": "Kóńceca toflicka <code></ref></code> felujo za toflicku <code><ref></code>",
|
||||
"cite_error_refs_without_references": "Toflicki <code><ref></code> eksistěruju, ale toflicka <code><references/></code> njejo se namakała",
|
||||
"cite_error_group_refs_without_references": "Toflicki <code><ref></code> eksistěruju za kupku z mjenim \"$1\", ale wótpowědujuca toflicka <code><references group=\"$1\"/></code> njejo se namakała abo zacynjacy <code></ref></code> felujo",
|
||||
"cite_error_references_group_mismatch": "Toflicka <code><ref></code> w <code><references></code> jo ze kupkowym atributom \"$1\" w konflikśe.",
|
||||
"cite_error_references_missing_group": "Toflicka <code><ref></code>, kótaraž jo w <code><references></code> definěrowana, ma kupkowy atribut \"$1\", kótaryž njepokazujo se w pjerwjejšnem teksće.",
|
||||
"cite_error_references_missing_key": "Toflicka <code><ref></code> z mjenim \"$1\", kótaraž jo w <code><references></code> definěrowana, njewužywa se w pjerwjejšnem teksće.",
|
||||
"cite_error_references_no_key": "Toflicka <code><ref></code>, kótaraž jo w <code><references></code> definěrowana, njama mjenjowy atribut.",
|
||||
"cite_error_empty_references_define": "Toflicka <code><ref></code>, kótaraž jo w <code><references></code> z mjenim \"$1\" definěrowana, njama wopśimjeśe.",
|
||||
"cite_references_link_accessibility_label": "Górjej skócyś",
|
||||
"cite_references_link_many_accessibility_label": "Górjej skócys do:"
|
||||
}
|
|
@ -1,30 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Consta",
|
||||
"Omnipaedista",
|
||||
"Protnet",
|
||||
"ZaDiak",
|
||||
"Απεργός"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Προσθέτει τις ετικέτες <nowiki><ref[ name=id]></nowiki> και <nowiki><references/></nowiki>, για παραπομπές.",
|
||||
"cite_error": "Σφάλμα παραπομπής: $1",
|
||||
"cite_error_ref_numeric_key": "Μη έγκυρη ετικέτα <code><ref></code>·\nτο όνομα δεν μπορεί να είναι απλός ακέραιος. Χρησιμοποιήστε έναν περιγραφικό τίτλο",
|
||||
"cite_error_ref_no_key": "Μη έγκυρη ετικέτα <code><ref></code>·\nπαραπομπές χωρίς περιεχόμενο πρέπει να έχουν όνομα",
|
||||
"cite_error_ref_too_many_keys": "Μη έγκυρη ετικέτα <code><ref></code>·\nμη έγκυρα ονόματα, π.χ. πάρα πολλά",
|
||||
"cite_error_ref_no_input": "Μη έγκυρη ετικέτα <code><ref></code>·\nοι παραπομπές χωρίς όνομα πρέπει να έχουν περιεχόμενο",
|
||||
"cite_error_references_invalid_parameters": "Μη έγκυρη ετικέτα <code><references></code>·\nδεν επιτρέπονται παράμετροι.\nΧρησιμοποιήστε <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Μη έγκυρη ετικέτα <code><references></code>·\nμόνο η παράμετρος «group» επιτρέπεται.\nΧρησιμοποιείστε <code><references /></code>, ή <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Εξαντλήθηκαν οι ειδικές ετικέτες συνδέσμων προς το κείμενο.\nΚαθορισμός περισσότερων στο μήνυμα <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>.",
|
||||
"cite_error_no_link_label_group": "Εξαντλήθηκαν οι ειδικές ετικέτες συνδέσμων για την ομάδα «$1».\nΚαθορισμός περισσότερων στο μήνυμα <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "Μη έγκυρη ετικέτα <code><ref></code>·\nδεν δίνεται κείμενο για παραπομπές με όνομα <code>$1</code>",
|
||||
"cite_error_included_ref": "Λείπει η ετικέτα κλεισίματος <code></ref></code> για την ετικέτα <code><ref></code>",
|
||||
"cite_error_refs_without_references": "Υπάρχουν ετικέτες <code><ref></code>, αλλά δεν βρέθηκε ετικέτα <code><references/></code>.",
|
||||
"cite_error_group_refs_without_references": "Υπάρχουν ετικέτες <code><ref></code> για μία ομάδα με το όνομα «$1», αλλά καμία αντίστοιχη ετικέτα <code><references group=\"$1\"/></code> δεν βρέθηκε.",
|
||||
"cite_error_references_group_mismatch": "Η ετικέτα <code><ref></code> μέσα στο <code><references></code> έρχεται σε σύγκρουση με το χαρακτηριστικό ομαδοποίησης «$1».",
|
||||
"cite_error_references_missing_group": "Η ετικέτα <code><ref></code> που ορίζεται μέσα στο <code><references></code> έχει χαρακτηριστικό ομαδοποίησης «$1» που δεν εμφανίζεται σε προηγούμενο κείμενο.",
|
||||
"cite_error_references_missing_key": "Η ετικέτα <code><ref></code> με όνομα «$1» που ορίζεται μέσα στο <code><references></code> δεν χρησιμοποιείται σε προηγούμενο κείμενο.",
|
||||
"cite_error_references_no_key": "Η ετικέτα <code><ref></code> που ορίζεται μέσα στο <code><references></code> δεν έχει χαρακτηριστικό ονόματος.",
|
||||
"cite_error_empty_references_define": "Η ετικέτα <code><ref></code> που ορίζεται μέσα στο <code><references></code> με όνομα «$1» δεν έχει καθόλου περιεχόμενο."
|
||||
}
|
|
@ -1,40 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": []
|
||||
},
|
||||
"cite-desc": "Adds <nowiki><ref[ name=id]></nowiki> and <nowiki><references/></nowiki> tags, for citations",
|
||||
"cite_error": "Cite error: $1",
|
||||
"cite_error_ref_numeric_key": "Invalid <code><ref></code> tag;\nname cannot be a simple integer. Use a descriptive title",
|
||||
"cite_error_ref_no_key": "Invalid <code><ref></code> tag;\nrefs with no content must have a name",
|
||||
"cite_error_ref_too_many_keys": "Invalid <code><ref></code> tag;\ninvalid names, e.g. too many",
|
||||
"cite_error_ref_no_input": "Invalid <code><ref></code> tag;\nrefs with no name must have content",
|
||||
"cite_error_references_invalid_parameters": "Invalid <code><references></code> tag;\nno parameters are allowed.\nUse <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Invalid <code><references></code> tag;\nparameter \"group\" is allowed only.\nUse <code><references /></code>, or <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Ran out of custom backlink labels.\nDefine more in the <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki> message.",
|
||||
"cite_error_no_link_label_group": "Ran out of custom link labels for group \"$1\".\nDefine more in the <nowiki>[[MediaWiki:$2]]</nowiki> message.",
|
||||
"cite_error_references_no_text": "Invalid <code><ref></code> tag;\nno text was provided for refs named <code>$1</code>",
|
||||
"cite_error_included_ref": "Closing <code></ref></code> missing for <code><ref></code> tag",
|
||||
"cite_error_group_refs_without_references": "<code><ref></code> tags exist for a group named \"$1\", but no corresponding <code><references group=\"$1\"/></code> tag was found, or a closing <code></ref></code> is missing",
|
||||
"cite_error_references_group_mismatch": "<code><ref></code> tag in <code><references></code> has conflicting group attribute \"$1\".",
|
||||
"cite_error_references_missing_group": "<code><ref></code> tag defined in <code><references></code> has group attribute \"$1\" which does not appear in prior text.",
|
||||
"cite_error_references_missing_key": "<code><ref></code> tag with name \"$1\" defined in <code><references></code> is not used in prior text.",
|
||||
"cite_error_references_no_key": "<code><ref></code> tag defined in <code><references></code> has no name attribute.",
|
||||
"cite_error_empty_references_define": "<code><ref></code> tag defined in <code><references></code> with name \"$1\" has no content.",
|
||||
"cite_reference_link_key_with_num": "$1_$2",
|
||||
"cite_reference_link_prefix": "cite_ref-",
|
||||
"cite_reference_link_suffix": "",
|
||||
"cite_references_link_prefix": "cite_note-",
|
||||
"cite_references_link_suffix": "",
|
||||
"cite_reference_link": "<sup id=\"$1\" class=\"reference\">[[#$2|<nowiki>[</nowiki>$3<nowiki>]</nowiki>]]</sup>",
|
||||
"cite_references_no_link": "<p id=\"$1\">$2</p>",
|
||||
"cite_references_link_one": "<li id=\"$1\"><span class=\"mw-cite-backlink\">[[#$2|↑]]</span> $3</li>",
|
||||
"cite_references_link_many": "<li id=\"$1\"><span class=\"mw-cite-backlink\">↑ $2</span> $3</li>",
|
||||
"cite_references_link_many_format": "<sup>[[#$1|$2]]</sup>",
|
||||
"cite_references_link_many_format_backlink_labels": "a b c d e f g h i j k l m n o p q r s t u v w x y z aa ab ac ad ae af ag ah ai aj ak al am an ao ap aq ar as at au av aw ax ay az ba bb bc bd be bf bg bh bi bj bk bl bm bn bo bp bq br bs bt bu bv bw bx by bz ca cb cc cd ce cf cg ch ci cj ck cl cm cn co cp cq cr cs ct cu cv cw cx cy cz da db dc dd de df dg dh di dj dk dl dm dn do dp dq dr ds dt du dv dw dx dy dz ea eb ec ed ee ef eg eh ei ej ek el em en eo ep eq er es et eu ev ew ex ey ez fa fb fc fd fe ff fg fh fi fj fk fl fm fn fo fp fq fr fs ft fu fv fw fx fy fz ga gb gc gd ge gf gg gh gi gj gk gl gm gn go gp gq gr gs gt gu gv gw gx gy gz ha hb hc hd he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy hz ia ib ic id ie if ig ih ii ij ik il im in io ip iq ir is it iu iv iw ix iy iz ja jb jc jd je jf jg jh ji jj jk jl jm jn jo jp jq jr js jt ju jv jw jx jy jz ka kb kc kd ke kf kg kh ki kj kk kl km kn ko kp kq kr ks kt ku kv kw kx ky kz la lb lc ld le lf lg lh li lj lk ll lm ln lo lp lq lr ls lt lu lv lw lx ly lz ma mb mc md me mf mg mh mi mj mk ml mm mn mo mp mq mr ms mt mu mv mw mx my mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt nu nv nw nx ny nz oa ob oc od oe of og oh oi oj ok ol om on oo op oq or os ot ou ov ow ox oy oz pa pb pc pd pe pf pg ph pi pj pk pl pm pn po pp pq pr ps pt pu pv pw px py pz qa qb qc qd qe qf qg qh qi qj qk ql qm qn qo qp qq qr qs qt qu qv qw qx qy qz ra rb rc rd re rf rg rh ri rj rk rl rm rn ro rp rq rr rs rt ru rv rw rx ry rz sa sb sc sd se sf sg sh si sj sk sl sm sn so sp sq sr ss st su sv sw sx sy sz ta tb tc td te tf tg th ti tj tk tl tm tn to tp tq tr ts tt tu tv tw tx ty tz ua ub uc ud ue uf ug uh ui uj uk ul um un uo up uq ur us ut uu uv uw ux uy uz va vb vc vd ve vf vg vh vi vj vk vl vm vn vo vp vq vr vs vt vu vv vw vx vy vz wa wb wc wd we wf wg wh wi wj wk wl wm wn wo wp wq wr ws wt wu wv ww wx wy wz xa xb xc xd xe xf xg xh xi xj xk xl xm xn xo xp xq xr xs xt xu xv xw xx xy xz ya yb yc yd ye yf yg yh yi yj yk yl ym yn yo yp yq yr ys yt yu yv yw yx yy yz za zb zc zd ze zf zg zh zi zj zk zl zm zn zo zp zq zr zs zt zu zv zw zx zy zz",
|
||||
"cite_references_link_many_sep": " ",
|
||||
"cite_references_link_many_and": " ",
|
||||
"cite_references_link_accessibility_label": "Jump up",
|
||||
"cite_references_link_many_accessibility_label": "Jump up to:",
|
||||
"cite_references_prefix": "<ol class=\"references\">",
|
||||
"cite_references_suffix": "</ol>"
|
||||
}
|
|
@ -1,28 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"AVRS",
|
||||
"Malafaya",
|
||||
"Yekrats"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Aldonas etikedojn <nowiki><ref[ name=id]></nowiki> kaj <nowiki><references/></nowiki> por citaĵoj",
|
||||
"cite_error": "Citaĵa eraro: $1",
|
||||
"cite_error_ref_numeric_key": "Malvalida etikedo <code><ref></code>;\nnomo ne povas esti simpla entjero. Uzu priskriban titolon.",
|
||||
"cite_error_ref_no_key": "Malvalida etikedo <code><ref></code>;\n''ref'' kun nenia enhava nomo devas havi nomon",
|
||||
"cite_error_ref_too_many_keys": "Malvalida etikedo <code><ref></code>;\nmalvalidaj nomoj (ekz-e: tro multaj)",
|
||||
"cite_error_ref_no_input": "Malvalida etikedo <code><ref></code>;\nref-etikedoj sen nomo devas havi enhavojn.",
|
||||
"cite_error_references_invalid_parameters": "Nevalida etikedo <code><references></code>; neniuj parametroj estas permesitaj, uzu <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Malvalida etikedon <code><references></code>;\nparametro \"group\" nur estas permesita.\nUzu etikedon <code><references /></code>, aŭ <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Neniom plu memfaritaj retroligaj etikedoj.\nDifinu pliajn en la mesaĝo <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>.",
|
||||
"cite_error_no_link_label_group": "Mankas proprajn ligilajn etikedojn por grupo \"$1\".\nDifinu pliajn en la <nowiki>[[MediaWiki:$2]]</nowiki> mesaĝo.",
|
||||
"cite_error_references_no_text": "Nevalida <code><ref></code> etikedo;\nneniu teksto estis donita por ref-oj nomataj <code>$1</code>",
|
||||
"cite_error_included_ref": "Ferma <code></ref></code> mankas por <code><ref></code>-etikedo",
|
||||
"cite_error_refs_without_references": "Etikedoj <code><ref></code> ekzistas, sed neniu etikedo <code><references/></code> estis trovita",
|
||||
"cite_error_group_refs_without_references": "<code><ref></code> etikedoj ekzistas por grupo nomita \"$1\", sed ne koresponda <code><references group=\"$1\"/></code> etikedo estis trovita",
|
||||
"cite_error_references_group_mismatch": "<code><ref></code> etikedo en <code><references></code> havas konflikan grupatributon \"$1\".",
|
||||
"cite_error_references_missing_group": "<code><ref></code> etikedo difinita en <code><references></code> havas grupatributon \"$1\" kiu ne aperas en antaŭa teksto.",
|
||||
"cite_error_references_missing_key": "<code><ref></code> etikedo kun la nomo \"$1\" difinita en <code><references></code> ne estas uzata en antaŭa teksto.",
|
||||
"cite_error_references_no_key": "<code><ref></code> etikedo difinita en <code><references></code> ne havas noman atributon.",
|
||||
"cite_error_empty_references_define": "<code><ref></code> etikedo difinita en <code><references></code> kun nomo \"$1\" ne havas enhavon."
|
||||
}
|
|
@ -1,44 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Antur",
|
||||
"Baiji",
|
||||
"Ciencia Al Poder",
|
||||
"Crazymadlover",
|
||||
"Drini",
|
||||
"Erdemaslancan",
|
||||
"Fitoschido",
|
||||
"Gustronico",
|
||||
"Ihojose",
|
||||
"Locos epraix",
|
||||
"Manuelt15",
|
||||
"McDutchie",
|
||||
"Muro de Aguas",
|
||||
"Remember the dot",
|
||||
"Sanbec",
|
||||
"Translationista"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Añade las etiquietas <nowiki><ref[ name=id]> y <references /></nowiki> para utilizar notas al pie.",
|
||||
"cite_error": "Error en la cita: $1",
|
||||
"cite_error_ref_numeric_key": "Etiqueta <code><ref></code> no válida;\nel nombre no puede ser un número entero. Use un título descriptivo",
|
||||
"cite_error_ref_no_key": "Etiqueta <code><ref></code> no válida;\nlas referencias sin contenido deben tener un nombre",
|
||||
"cite_error_ref_too_many_keys": "Etiqueta <code><ref></code> inválida;\ncontiene parámetros no reconocidos",
|
||||
"cite_error_ref_no_input": "Etiqueta <code><ref></code> no válida;\nlas referencias sin nombre deben tener contenido",
|
||||
"cite_error_references_invalid_parameters": "Etiqueta <code><references></code> no válida;\nno se admiten parámetros.\nUse <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Etiqueta <code><references></code> no válida;\nsólo se permite el parámetro «group».\nUse <code><references /></code>, o <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Se han acabado las etiquetas personalizadas de vínculos de retroceso.\nDefine más en <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>.",
|
||||
"cite_error_no_link_label_group": "Se han acabado las etiquetas personalizadas para vínculos del grupo \"$1\".\nDefine más en el mensaje <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "Etiqueta <code><ref></code> inválida;\nno se ha definido el contenido de las referencias llamadas <code>$1</code>",
|
||||
"cite_error_included_ref": "Etiqueta de apertura <code><ref></code> sin su correspondiente cierre <code></ref></code>",
|
||||
"cite_error_refs_without_references": "Existen etiquetas <code><ref></code>, pero no se encontró una etiqueta <code><references /></code>",
|
||||
"cite_error_group_refs_without_references": "Existen etiquetas <code><ref></code> para un grupo llamado «$1», pero no se encontró la etiqueta <code><references group=\"$1\"/></code> correspondiente, o falta la etiqueta <code></ref></code> de cierre",
|
||||
"cite_error_references_group_mismatch": "La etiqueta <code><ref></code> en <code><references></code> presenta el atributo de grupo \"$1\" en conflicto.",
|
||||
"cite_error_references_missing_group": "La etiqueta <code><ref></code> definida en <code><references></code> pertenece al grupo \"$1\" no declarado en el texto precedente.",
|
||||
"cite_error_references_missing_key": "La etiqueta <code><ref></code> con nombre \"$1\" definida en <code><references></code> no se utiliza en el texto precedente.",
|
||||
"cite_error_references_no_key": "La etiqueta <code><ref></code> definida en <code><references></code> no tiene atributo de nombre.",
|
||||
"cite_error_empty_references_define": "La etiqueta <code><ref></code> definida en <code><references></code> con nombre \"$1\" no tiene contenido.",
|
||||
"cite_references_link_many_format_backlink_labels": "a b c d e f g h i j k l m n o p q r s t u v w x y z aa ab ac ad ae af ag ah ai aj ak al am an ao ap aq ar as at au av aw ax ay az ba bb bc bd be bf bg bh bi bj bk bl bm bn bo bp bq br bs bt bu bv bw bx by bz ca cb cc cd ce cf cg ch ci cj ck cl cm cn co cp cq cr cs ct cu cv cw cx cy cz da db dc dd de df dg dh di dj dk dl dm dn do dp dq dr ds dt du dv dw dx dy dz ea eb ec ed ee ef eg eh ei ej ek el em en eo ep eq er es et eu ev ew ex ey ez fa fb fc fd fe ff fg fh fi fj fk fl fm fn fo fp fq fr fs ft fu fv fw fx fy fz ga gb gc gd ge gf gg gh gi gj gk gl gm gn go gp gq gr gs gt gu gv gw gx gy gz ha hb hc hd he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy hz ia ib ic id ie if ig ih ii ij ik il im in io ip iq ir is it iu iv iw ix iy iz ja jb jc jd je jf jg jh ji jj jk jl jm jn jo jp jq jr js jt ju jv jw jx jy jz ka kb kc kd ke kf kg kh ki kj kk kl km kn ko kp kq kr ks kt ku kv kw kx ky kz la lb lc ld le lf lg lh li lj lk ll lm ln lo lp lq lr ls lt lu lv lw lx ly lz ma mb mc md me mf mg mh mi mj mk ml mm mn mo mp mq mr ms mt mu mv mw mx my mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt nu nv nw nx ny nz oa ob oc od oe of og oh oi oj ok ol om on oo op oq or os ot ou ov ow ox oy oz pa pb pc pd pe pf pg ph pi pj pk pl pm pn po pp pq pr ps pt pu pv pw px py pz qa qb qc qd qe qf qg qh qi qj qk ql qm qn qo qp qq qr qs qt qu qv qw qx qy qz ra rb rc rd re rf rg rh ri rj rk rl rm rn ro rp rq rr rs rt ru rv rw rx ry rz sa sb sc sd se sf sg sh si sj sk sl sm sn so sp sq sr ss st su sv sw sx sy sz ta tb tc td te tf tg th ti tj tk tl tm tn to tp tq tr ts tt tu tv tw tx ty tz ua ub uc ud ue uf ug uh ui uj uk ul um un uo up uq ur us ut uu uv uw ux uy uz va vb vc vd ve vf vg vh vi vj vk vl vm vn vo vp vq vr vs vt vu vv vw vx vy vz wa wb wc wd we wf wg wh wi wj wk wl wm wn wo wp wq wr ws wt wu wv ww wx wy wz xa xb xc xd xe xf xg xh xi xj xk xl xm xn xo xp xq xr xs xt xu xv xw xx xy xz ya yb yc yd ye yf yg yh yi yj yk yl ym yn yo yp yq yr ys yt yu yv yw yx yy yz za zb zc zd ze zf zg zh zi zj zk zl zm zn zo zp zq zr zs zt zu zv zw zx zy zz",
|
||||
"cite_references_link_accessibility_label": "Volver arriba",
|
||||
"cite_references_link_many_accessibility_label": "Saltar a:"
|
||||
}
|
|
@ -1,28 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Pikne"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Lisab viitamiseks sildid <nowiki><ref[ name=id]></nowiki> ja <nowiki><references/></nowiki>.",
|
||||
"cite_error": "Viitamistõrge: $1",
|
||||
"cite_error_ref_numeric_key": "Vigane <code><ref></code>-silt.\nNimi ei või olla numbriline. Kasuta kirjeldavat nime.",
|
||||
"cite_error_ref_no_key": "Vigane <code><ref></code>-silt.\nSisuta viitamissiltidel peab olema nimi.",
|
||||
"cite_error_ref_too_many_keys": "Vigane <code><ref></code>-silt;\n\"name\" on vigane või liiga pikk.",
|
||||
"cite_error_ref_no_input": "Vigane <code><ref></code>-silt.\nNimeta viitamissiltidel peab olema sisu.",
|
||||
"cite_error_references_invalid_parameters": "Vigane <code><references></code>-silt.\nParameetrid pole lubatud.\nKasuta silti <code><references /></code>.",
|
||||
"cite_error_references_invalid_parameters_group": "Vigane <code><references></code>-silt.\nLubatud on ainult parameeter \"group\".\nKasuta silti <code><references /></code> või <code><references group=\"...\" /></code>.",
|
||||
"cite_error_references_no_backlink_label": "Kohandatud tagasilinkide sildid said otsa.\nLisa neid sõnumisse <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>.",
|
||||
"cite_error_no_link_label_group": "Rühma \"$1\" kohandatud linkide sildid said otsa.\nLisa neid sõnumisse <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "Vigane <code><ref></code>-silt.\nViite nimega <code>$1</code> tekst puudub.",
|
||||
"cite_error_included_ref": "Sulgemissilt <code></ref></code> puudub.",
|
||||
"cite_error_group_refs_without_references": "Olemas on <code><ref></code>-silt rühma \"$1\" jaoks, aga puudub vastav silt <code><references group=\"$1\"/></code> või lõpusilt <code></ref></code>.",
|
||||
"cite_error_references_group_mismatch": "<code><references></code>-siltide vahel oleval <code><ref></code>-sildil on vastukäiv parameetri \"group\" väärtus \"$1\".",
|
||||
"cite_error_references_missing_group": "<code><references></code>-sildis kirjeldatud <code><ref></code>-sildil on rühmatunnus \"$1\", mis puudub eelnevas tekstis.",
|
||||
"cite_error_references_missing_key": "<code><references></code>-siltide vahel olevat <code><ref></code>-silti nimega \"$1\" ei kasutata eelnevas tekstis.",
|
||||
"cite_error_references_no_key": "<code><references></code>-siltide vahel määratletud <code><ref></code>-sildil puudub ''name''-atribuut.",
|
||||
"cite_error_empty_references_define": "<code><references></code>-siltide vahel oleval <code><ref></code>-sildil nimega \"$1\" puudub sisu.",
|
||||
"cite_references_link_accessibility_label": "Siirdu üles",
|
||||
"cite_references_link_many_accessibility_label": "Siirdu üles asukohta:",
|
||||
"cite_error_refs_without_references_category-desc": "Leheküljel on kasutatud kindla rühmata <code><nowiki><ref></nowiki></code>-silte, aga selgeilmeline <code><nowiki><references /></nowiki></code>-silt puudub."
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"An13sa"
|
||||
]
|
||||
},
|
||||
"cite-desc": "<nowiki><ref[ name=id]></nowiki> eta <nowiki><references/></nowiki> etiketak gehitzen ditu, aipuentzako",
|
||||
"cite_error": "Aipamen errorea: $1"
|
||||
}
|
|
@ -1,34 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Ebraminio",
|
||||
"Huji",
|
||||
"Wayiran",
|
||||
"ZxxZxxZ",
|
||||
"Reza1615"
|
||||
]
|
||||
},
|
||||
"cite-desc": "برچسبهای <nowiki><ref[ name=id]></nowiki> و <nowiki><references/></nowiki> را برای یادکرد اضافه میکند",
|
||||
"cite_error": "خطای یادکرد: $1",
|
||||
"cite_error_ref_numeric_key": "برچسب <code><ref></code> نامجاز؛ نام نمیتواند یک عدد باشد. عنوان واضحتری را برگزینید",
|
||||
"cite_error_ref_no_key": "برچسب <code><ref></code> نامجاز؛ یادکردهای بدون محتوا باید نام داشته باشند",
|
||||
"cite_error_ref_too_many_keys": "برچسب <code><ref></code> نامجاز؛ نامهای نامجاز یا بیش از اندازه",
|
||||
"cite_error_ref_no_input": "برچسب <code><ref></code> نامجاز؛ یادکردهای بدون نام باید محتوا داشته باشند",
|
||||
"cite_error_references_invalid_parameters": "برچسب <code><references></code> نامجاز؛ استفاده از پارامتر مجاز است. از <code><references /></code> استفاده کنید",
|
||||
"cite_error_references_invalid_parameters_group": "برچسب <code><references></code> نامجاز؛ تنها پارامتر «group» قابل استفاده است.\nاز <code><references /></code> یا <code><references group=\"...\" /></code> استفاده کنید",
|
||||
"cite_error_references_no_backlink_label": "برچسبهای پیوند به انتها رسید.\nموارد جدیدی را در پیغام <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki> تعریف کنید",
|
||||
"cite_error_no_link_label_group": "از برچسبهای پیوند سفارشی برای گروه «$1» خارج شد.\nدر پیغام <nowiki>[[MediaWiki:$2]]</nowiki> بیشتر تعریف کنید.",
|
||||
"cite_error_references_no_text": "برچسب <code><ref></code> نامجاز؛ متنی برای یادکردهای با نام <code>$1</code> وارد نشدهاست",
|
||||
"cite_error_included_ref": "برچسب تمام کنندهٔ <code></ref></code> بدون برچسب <code><ref></code>",
|
||||
"cite_error_group_refs_without_references": "برچسب <code><ref></code> برای گروهی به نام «$1» وجود دارد، اما برچسب متناظر با <code><references group=\"$1\"/></code> یافت نشد یا <code></ref></code> بسته جا گذاشته شدهاست.",
|
||||
"cite_error_references_group_mismatch": "برچسپ <code><ref></code> درون <code><references></code> در تضاد با ویژگیهای گروه «$1» است.",
|
||||
"cite_error_references_missing_group": "برچسپ <code><ref></code> در <code><references></code> تعریف شده، ویژگیهای گروهی «$1» را دارد که درون متن قبل از آن ظاهر نمیشود.",
|
||||
"cite_error_references_missing_key": "پرچسپ <code><ref></code> که با نام «$1» درون <code><references></code> تعریف شده، در متن قبل از آن استفاده نشدهاست.",
|
||||
"cite_error_references_no_key": "برچسپ <code><ref></code> درون <code><references></code> صفت نام را ندارد.",
|
||||
"cite_error_empty_references_define": "برچسپ <code><ref></code> تعریف شده درون <code><references></code> با نام «$1» محتوایی ندارد.",
|
||||
"cite_reference_link_key_with_num": "$1_$2",
|
||||
"cite_reference_link_prefix": "cite_ref-",
|
||||
"cite_references_link_accessibility_label": "پرش به بالا",
|
||||
"cite_references_link_many_accessibility_label": "پرش به بالا به:",
|
||||
"cite_error_refs_without_references_category-desc": "این صفحه دارای <code><nowiki><ref></nowiki></code> است که به صورت گروهی تعریف نشدهاند، ولی برچسب <code><nowiki><references /></nowiki></code> ندارد."
|
||||
}
|
|
@ -1,33 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Agony",
|
||||
"Crt",
|
||||
"Nike",
|
||||
"Olli",
|
||||
"Silvonen",
|
||||
"Str4nd",
|
||||
"Tarmo",
|
||||
"Syreeni"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Tarjoaa <nowiki><ref[ name=id]></nowiki>- ja <nowiki><references/></nowiki>-elementit viittauksien tekemiseen.",
|
||||
"cite_error": "Viittausvirhe: $1",
|
||||
"cite_error_ref_numeric_key": "Kelpaamaton <code><ref></code>-elementti: nimi ei voi olla numero – käytä kuvaavampaa nimeä.",
|
||||
"cite_error_ref_no_key": "Kelpaamaton <code><ref></code>-elementti: sisällöttömille refeille pitää määrittää nimi.",
|
||||
"cite_error_ref_too_many_keys": "Kelpaamaton <code><ref></code>-elementti: virheelliset nimet, esim. liian monta",
|
||||
"cite_error_ref_no_input": "Kelpaamaton <code><ref></code>-elementti: viitteillä ilman nimiä täytyy olla sisältöä",
|
||||
"cite_error_references_invalid_parameters": "Kelpaamaton <code><references></code>-elementti: parametrit eivät ole sallittuja. Käytä muotoa <code><references /></code>.",
|
||||
"cite_error_references_invalid_parameters_group": "Kelpaamaton <code><references></code>-elementti: vain parametri ”group” on sallittu. Käytä muotoa <code><references /></code> tai <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Määritetyt takaisinviittausnimikkeet loppuivat kesken.\nNiitä voi määritellä lisää sivulla <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>.",
|
||||
"cite_error_no_link_label_group": "Mukautettujen linkkikirjainten määrä ryhmälle ”$1” loppui.\nMääritä niitä lisää viestissä <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "Virheellinen <code><ref></code>-elementti;\nviitettä <code>$1</code> ei löytynyt",
|
||||
"cite_error_included_ref": "<code><ref></code>-elementin sulkeva <code></ref></code>-elementti puuttuu",
|
||||
"cite_error_refs_without_references": "<code><ref></code>-elementti löytyy, mutta <code><references/></code>-elementtiä ei löydy",
|
||||
"cite_error_group_refs_without_references": "<code><ref></code>-elementit löytyivät ryhmälle nimeltä ”$1”, mutta vastaavaa <code><references group=\"$1\"/></code>-elementtiä ei löytynyt tai sulkeva <code></ref></code> puuttuu",
|
||||
"cite_error_references_group_mismatch": "<code><ref></code>-elementti <code><references></code>-elementin sisällä sisältää ristiriitaisen ryhmämääritteen ”$1”.",
|
||||
"cite_error_references_missing_group": "<code><references></code>-elementissä määritetty <code><ref></code>-elementti sisältää ryhmämääritteen ”$1”, jota ei mainita aiemmassa tekstissä.",
|
||||
"cite_error_references_missing_key": "<code><ref></code>-elementin nimeä ”$1”, johon viitataan elementissä <code><references></code> ei käytetä edeltävässä tekstissä.",
|
||||
"cite_error_references_no_key": "<code><references></code>-elementissä määritetyllä <code><ref></code>-elementillä ei ole nimimääritettä.",
|
||||
"cite_error_empty_references_define": "<code><references></code>-elementissä määritetyllä <code><ref></code>-elementillä nimellä ”$1” ei ole sisältöä."
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"EileenSanda"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Leggur afturat <nowiki><ref[ name=id]></nowiki> og <nowiki><references/></nowiki> lyklaorð, fyri ávísingar",
|
||||
"cite_error_refs_without_references": "<code><ref></code> lyklaorð eru til, men onki <code><references/></code> lyklaorð (tag) varð funnið",
|
||||
"cite_error_group_refs_without_references": "<code><ref></code> lyklaorð (tags) eru til fyri ein bólk sum eitur \"$1\", men onki tilsvarandi <code><references group=\"$1\"/></code> lyklaorð varð funnið, ella manglar ein lukkandi <code></ref></code>"
|
||||
}
|
|
@ -1,42 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Cedric31",
|
||||
"Crochet.david",
|
||||
"Gomoko",
|
||||
"Grondin",
|
||||
"IAlex",
|
||||
"Kropotkine 113",
|
||||
"McDutchie",
|
||||
"Sherbrooke",
|
||||
"The Evil IP address",
|
||||
"Trizek",
|
||||
"Urhixidur",
|
||||
"Verdy p"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Ajoute les balises <nowiki><ref[ name=\"id\"]></nowiki> et <nowiki><references/></nowiki> pour les références et notes de bas de page.",
|
||||
"cite_error": "Erreur de référence : $1",
|
||||
"cite_error_ref_numeric_key": "Balise <code><ref></code> incorrecte ;\nle nom ne peut être un entier simple. Utilisez un titre descriptif.",
|
||||
"cite_error_ref_no_key": "Balise <code><ref></code> incorrecte ;\nles références sans contenu doivent avoir un nom.",
|
||||
"cite_error_ref_too_many_keys": "Balise <code><ref></code> incorrecte ;\nnoms incorrects, par exemple trop nombreux.",
|
||||
"cite_error_ref_no_input": "Balise <code><ref></code> incorrecte ;\nles références sans nom doivent avoir un contenu.",
|
||||
"cite_error_references_invalid_parameters": "Balise <code><references></code> incorrecte ;\naucun paramètre n’est permis.\nUtilisez simplement <code><references /></code>.",
|
||||
"cite_error_references_invalid_parameters_group": "Balise <code><references></code> incorrecte ;\nseul l’attribut « group » est autorisé.\nUtilisez <code><references /></code>, ou bien <code><references group=\"...\" /></code>.",
|
||||
"cite_error_references_no_backlink_label": "Épuisement des étiquettes de liens personnalisées.\nDéfinissez-en un plus grand nombre dans le message <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>.",
|
||||
"cite_error_no_link_label_group": "Plus d’étiquettes de liens personnalisées pour le groupe « $1 ».\nDéfinissez-en plus dans le message <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "Balise <code><ref></code> incorrecte ;\naucun texte n’a été fourni pour les références nommées <code>$1</code>.",
|
||||
"cite_error_included_ref": "Clôture <code></ref></code> manquante pour la balise <code><ref></code>.",
|
||||
"cite_error_group_refs_without_references": "Des balises <code><ref></code> existent pour un groupe nommé « $1 », mais aucune balise <code><references group=\"$1\"/></code> correspondante n’a été trouvée, ou bien une valise fermante <code></ref></code> manque.",
|
||||
"cite_error_references_group_mismatch": "La balise <code><ref></code> dans <code><references></code> a l’attribut de groupe « $1 » qui entre en conflit avec celui de <code><references></code>.",
|
||||
"cite_error_references_missing_group": "La balise <code><ref></code> définie dans <code><references></code> a un groupe attribué « $1 » qui ne figure pas dans le texte précédent.",
|
||||
"cite_error_references_missing_key": "La balise <code><ref></code> avec le nom « $1 » définie dans <code><references></code> n’est pas utilisé dans le texte précédent.",
|
||||
"cite_error_references_no_key": "La balise <code><ref></code> définie dans <code><references></code> n’a pas d’attribut de nom.",
|
||||
"cite_error_empty_references_define": "La balise <code><ref></code> défini dans <code><references></code> avec le nom « $1 » n’a pas de contenu.",
|
||||
"cite_references_link_many_format": "<sup style=\"margin-left:.2em;margin-right:.2em;\">[[#$1|$2]]</sup>",
|
||||
"cite_references_link_many_sep": ", ",
|
||||
"cite_references_link_many_and": " et ",
|
||||
"cite_references_link_accessibility_label": "Aller",
|
||||
"cite_references_link_many_accessibility_label": "Aller à :",
|
||||
"cite_error_refs_without_references_category-desc": "La page a des <code><nowiki><ref></nowiki></code>s définis sans groupe spécifique, mais elle n’a pas de balise <code><nowiki><references /></nowiki></code> explicite."
|
||||
}
|
|
@ -1,28 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"ChrisPtDe"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Apond les balises <nowiki><ref[ name=id]></nowiki> et <nowiki><references/></nowiki>, por les citacions.",
|
||||
"cite_error": "Èrror de citacion $1",
|
||||
"cite_error_ref_numeric_key": "Apèl envalido ; cllâf pas entègrâla atendua.",
|
||||
"cite_error_ref_no_key": "Balisa <code><ref></code> fôssa ;\nles refèrences sen contegnu dêvont avêr un nom.",
|
||||
"cite_error_ref_too_many_keys": "Apèl envalido ; cllâfs envalides, per ègzemplo, trop de cllâfs spècefiâs ou ben cllâf fôssa.",
|
||||
"cite_error_ref_no_input": "Balisa <code><ref></code> fôssa ;\nles refèrences sen nom dêvont avêr un contegnu.",
|
||||
"cite_error_references_invalid_parameters": "Arguments envalidos ; argument atendu.",
|
||||
"cite_error_references_invalid_parameters_group": "Balisa <code><references></code> fôssa ;\nsolament lo paramètre « tropa » est ôtorisâ.\nUtilisâd <code><references /></code>, ou ben <code><references group=\"...\" /></code>.",
|
||||
"cite_error_references_no_backlink_label": "Èpouesement de les ètiquètes de lims pèrsonalisâs.\nDèfenésséd-nen un ples grant nombro dens lo mèssâjo <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>.",
|
||||
"cite_error_no_link_label_group": "Més d’ètiquètes de lims pèrsonalisâs por la tropa « $1 ».\nDèfenésséd-nen més dens lo mèssâjo <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "Balisa <code><ref></code> fôssa ;\nnion tèxto at étâ balyê por les refèrences apelâs <code>$1</code>.",
|
||||
"cite_error_included_ref": "Cllotura <code></ref></code> manquenta por la balisa <code><ref></code>.",
|
||||
"cite_error_refs_without_references": "Des balises <code><ref></code> ègzistont, mas niona balisa <code><references/></code> at étâ trovâ.",
|
||||
"cite_error_group_refs_without_references": "Des balises <code><ref></code> ègzistont por una tropa apelâ « $1 », mas niona balisa <code><references group=\"$1\"/></code> que corrèspond at étâ trovâ.",
|
||||
"cite_error_references_group_mismatch": "La balisa <code><ref></code> dens <code><references></code> at l’atribut de tropa « $1 » qu’entre en conflit avouéc celi de <code><references></code>.",
|
||||
"cite_error_references_missing_group": "La balisa <code><ref></code> dèfenia dens <code><references></code> at l’atribut de tropa « $1 » que figure pas dens cél tèxto.",
|
||||
"cite_error_references_missing_key": "La balisa <code><ref></code> avouéc lo nom « $1 » dèfenia dens <code><references></code> est pas utilisâ dens cél tèxto.",
|
||||
"cite_error_references_no_key": "La balisa <code><ref></code> dèfenia dens <code><references></code> at gins d’atribut de nom.",
|
||||
"cite_error_empty_references_define": "La balisa <code><ref></code> dèfenia dens <code><references></code> avouéc lo nom « $1 » at gins de contegnu.",
|
||||
"cite_references_link_many_sep": ", ",
|
||||
"cite_references_link_many_and": " et "
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Klenje"
|
||||
]
|
||||
},
|
||||
"cite_error": "Erôr te funzion Cite: $1"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Erdemaslancan"
|
||||
]
|
||||
},
|
||||
"cite_references_link_many_format_backlink_labels": "a b c d e f g h i j k l m n o p q r s t u v w x y z aa ab ac ad ae af ag ah ai aj ak al am an ao ap aq ar as at au av aw ax ay az ba bb bc bd be bf bg bh bi bj bk bl bm bn bo bp bq br bs bt bu bv bw bx by bz ca cb cc cd ce cf cg ch ci cj ck cl cm cn co cp cq cr cs ct cu cv cw cx cy cz da db dc dd de df dg dh di dj dk dl dm dn do dp dq dr ds dt du dv dw dx dy dz ea eb ec ed ee ef eg eh ei ej ek el em en eo ep eq er es et eu ev ew ex ey ez fa fb fc fd fe ff fg fh fi fj fk fl fm fn fo fp fq fr fs ft fu fv fw fx fy fz ga gb gc gd ge gf gg gh gi gj gk gl gm gn go gp gq gr gs gt gu gv gw gx gy gz ha hb hc hd he hf hg hh hi hj hk hl hm hn ho hp hq hr hs ht hu hv hw hx hy hz ia ib ic id ie if ig ih ii ij ik il im in io ip iq ir is it iu iv iw ix iy iz ja jb jc jd je jf jg jh ji jj jk jl jm jn jo jp jq jr js jt ju jv jw jx jy jz ka kb kc kd ke kf kg kh ki kj kk kl km kn ko kp kq kr ks kt ku kv kw kx ky kz la lb lc ld le lf lg lh li lj lk ll lm ln lo lp lq lr ls lt lu lv lw lx ly lz ma mb mc md me mf mg mh mi mj mk ml mm mn mo mp mq mr ms mt mu mv mw mx my mz na nb nc nd ne nf ng nh ni nj nk nl nm nn no np nq nr ns nt nu nv nw nx ny nz oa ob oc od oe of og oh oi oj ok ol om on oo op oq or os ot ou ov ow ox oy oz pa pb pc pd pe pf pg ph pi pj pk pl pm pn po pp pq pr ps pt pu pv pw px py pz qa qb qc qd qe qf qg qh qi qj qk ql qm qn qo qp qq qr qs qt qu qv qw qx qy qz ra rb rc rd re rf rg rh ri rj rk rl rm rn ro rp rq rr rs rt ru rv rw rx ry rz sa sb sc sd se sf sg sh si sj sk sl sm sn so sp sq sr ss st su sv sw sx sy sz ta tb tc td te tf tg th ti tj tk tl tm tn to tp tq tr ts tt tu tv tw tx ty tz ua ub uc ud ue uf ug uh ui uj uk ul um un uo up uq ur us ut uu uv uw ux uy uz va vb vc vd ve vf vg vh vi vj vk vl vm vn vo vp vq vr vs vt vu vv vw vx vy vz wa wb wc wd we wf wg wh wi wj wk wl wm wn wo wp wq wr ws wt wu wv ww wx wy wz xa xb xc xd xe xf xg xh xi xj xk xl xm xn xo xp xq xr xs xt xu xv xw xx xy xz ya yb yc yd ye yf yg yh yi yj yk yl ym yn yo yp yq yr ys yt yu yv yw yx yy yz za zb zc zd ze zf zg zh zi zj zk zl zm zn zo zp zq zr zs zt zu zv zw zx zy zz"
|
||||
}
|
|
@ -1,30 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Alma",
|
||||
"Toliño",
|
||||
"Xosé"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Engade as etiquetas <nowiki><ref[ name=id]></nowiki> e <nowiki><references/></nowiki> para as citas",
|
||||
"cite_error": "Erro no código da cita: $1",
|
||||
"cite_error_ref_numeric_key": "Etiqueta <code><ref></code> non válida;\no nome non pode ser un simple número enteiro. Use un título descritivo",
|
||||
"cite_error_ref_no_key": "Etiqueta <code><ref></code> non válida;\nas referencias que non teñan contido deben ter un nome",
|
||||
"cite_error_ref_too_many_keys": "Etiqueta <code><ref></code> non válida;\nnomes non válidos, por exemplo, demasiados",
|
||||
"cite_error_ref_no_input": "Etiqueta <code><ref></code> non válida;\nas referencias que non teñan nome, deben ter contido",
|
||||
"cite_error_references_invalid_parameters": "Etiqueta <code><references></code> non válida;\nnon están permitidos eses parámetros.\nUse <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Etiqueta <code><references></code> non válida;\nsó está permitido o parámetro \"group\" (\"grupo\").\nUse <code><references /></code> ou <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "As etiquetas personalizadas esgotáronse.\nDefina máis na mensaxe <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>",
|
||||
"cite_error_no_link_label_group": "As etiquetas personalizadas esgotáronse para o grupo \"$1\".\nDefina máis na mensaxe <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "Etiqueta <code><ref></code> non válida;\nnon se forneceu texto para as referencias de nome <code>$1</code>",
|
||||
"cite_error_included_ref": "Peche a etiqueta <code></ref></code> que lle falta á outra etiqueta <code><ref></code>",
|
||||
"cite_error_group_refs_without_references": "As etiquetas <code><ref></code> existen para un grupo chamado \"$1\", pero non se atopou a etiqueta <code><references group=\"$1\"/></code> correspondente ou falta unha etiqueta <code></ref></code> de peche",
|
||||
"cite_error_references_group_mismatch": "A etiqueta <code><ref></code> en <code><references></code> ten un atributo de grupo conflitivo \"$1\".",
|
||||
"cite_error_references_missing_group": "A etiqueta <code><ref></code> definida en <code><references></code> ten un atributo de grupo \"$1\" que non aparece no texto anterior.",
|
||||
"cite_error_references_missing_key": "A etiqueta <code><ref></code> co nome \"$1\" definida en <code><references></code> non se utiliza no texto anterior.",
|
||||
"cite_error_references_no_key": "A etiqueta <code><ref></code> definida en <code><references></code> non ten nome de atributo.",
|
||||
"cite_error_empty_references_define": "A etiqueta <code><ref></code> definida en <code><references></code> co nome \"$1\" non ten contido.",
|
||||
"cite_references_link_accessibility_label": "Saltar a",
|
||||
"cite_references_link_many_accessibility_label": "Saltar a:",
|
||||
"cite_error_refs_without_references_category-desc": "A páxina ten definidas <code><nowiki><ref></nowiki></code> sen ningún grupo específico, pero non conta cunha etiqueta <code><nowiki><references /></nowiki></code> explícita."
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Omnipaedista"
|
||||
]
|
||||
},
|
||||
"cite_error": "Σφάλμα μνείας: $1"
|
||||
}
|
|
@ -1,27 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Als-Holder",
|
||||
"The Evil IP address"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Ergänzt d <nowiki><ref[ name=id]></nowiki> un d <nowiki><references /></nowiki>-Tag fir Quällenochwyys",
|
||||
"cite_error": "Referänz-Fähler: $1",
|
||||
"cite_error_ref_numeric_key": "Uugiltigi <tt><ref></tt>-Verwändig: „name“ derf kei reine Zahlewärt syy, verwänd e Name wu bschrybt.",
|
||||
"cite_error_ref_no_key": "Uugiltigi <tt><ref></tt>-Verwändig: „ref“ ohni Inhalt muess e Name haa.",
|
||||
"cite_error_ref_too_many_keys": "Uugiltigi <tt><ref></tt>-Verwändig: „name“ isch uugiltig oder z lang.",
|
||||
"cite_error_ref_no_input": "Uugiltigi <tt><ref></tt>-Verwändig: „ref“ ohni Name muess e Inhalt haa.",
|
||||
"cite_error_references_invalid_parameters": "Uugiltigi <tt><references></tt>-Verwändig: S sin kei zuesätzligi Parameter erlaubt, verwänd usschließli <tt><nowiki><references /></nowiki></tt>.",
|
||||
"cite_error_references_invalid_parameters_group": "Uugiltigi <tt><references></tt>-Verwändig: Nume dr Parameter „group“ isch erlaubt, verwänd <tt><references /></tt> oder <tt><references group=\"...\" /></tt>",
|
||||
"cite_error_references_no_backlink_label": "E Referenz mit dr Form <tt><ref name=\"...\"/></tt> wird meh brucht as es Buechstabe git. E Ammann muess <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki> go wyteri Buechstabe/Zeiche ergänze.",
|
||||
"cite_error_no_link_label_group": "Fir d Gruppe „$1“ sin kei benutzerdefinierti Linkbezeichnige me verfiegbar.\nDefinier meh unter Systemnochricht <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "Uugiltige <tt><ref></tt>-Tag; s isch kei Täxt fir s Ref mit em Name <tt>$1</tt> aagee wore.",
|
||||
"cite_error_included_ref": "S fählt s schließend <code></ref></code>",
|
||||
"cite_error_refs_without_references": "<code><ref></code>-Tag git s, aber s isch kei <code><references/></code>-Tag gfunde wore.",
|
||||
"cite_error_group_refs_without_references": "<code><ref></code>-Tag git s fir d Grupp „$1“, aber s isch kei dezue gherig <code><references group=„$1“/></code>-Tag gfunde wore",
|
||||
"cite_error_references_group_mismatch": "Im <code><ref></code>-Tag in <code><references></code> het s e problematischi Gruppe-Eigeschaft „$1“.",
|
||||
"cite_error_references_missing_group": "Im <code><ref></code>-Tag, wu definiert isch in <code><references></code>, het s e Gruppe-Eigeschaft „$1“, wu im obere Text nit vorchunnt.",
|
||||
"cite_error_references_missing_key": "S <code><ref></code>-Tag mit em Name „$1“, wu definiert isch in <code><references></code> wird nit verwändet im obere Text.",
|
||||
"cite_error_references_no_key": "S <code><ref></code>-Tag, wu definiert isch in <code><references></code>, het kei Name-Eigeschaft.",
|
||||
"cite_error_empty_references_define": "Im <code><ref></code>-Tag, wu definiert isch in <code><references></code>, mit em Name „$1“ het s kei Inhalt."
|
||||
}
|
|
@ -1,30 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Ashok modhvadia",
|
||||
"Dsvyas",
|
||||
"KartikMistry",
|
||||
"Sushant savla"
|
||||
]
|
||||
},
|
||||
"cite-desc": "અવતરણો માટે <nowiki><ref[ name=id]></nowiki> અને <nowiki><references/></nowiki> ટેગ ઉમેરે છે",
|
||||
"cite_error": "સંદર્ભ ત્રુટિ: $1",
|
||||
"cite_error_ref_numeric_key": "અમાન્ય <code><ref></code> ટેગ;\nનામ માત્ર સરળ રાશિ ન હોઈ શકે, વિસ્તૃત શીર્ષક આપો",
|
||||
"cite_error_ref_no_key": "અમાન્ય <code><ref></code> ટેગ;\nનામ વગરના refs ને કાંઈક નામ તો હોવું જ જોઈએ",
|
||||
"cite_error_ref_too_many_keys": "અમાન્ય <code><ref></code> ચકતી;\nઅમાન્ય નામો , દા.ત. ઘણાં બધાં",
|
||||
"cite_error_ref_no_input": "અમાન્ય <code><ref></code> ટેગ;\nનામ વગરના refs માં કાંઈક સામગ્રી હોવી જોઈએ",
|
||||
"cite_error_references_invalid_parameters": "અમાન્ય <code><references></code> ટેગ;\nકોઈ પણ પરિમાણની પરવાનગી નથી.\n<code><references /></code> વાપરો",
|
||||
"cite_error_references_invalid_parameters_group": "અમાન્ય <code><references></code> ટેગ;\nમાત્ર \"group\" પરિમાણની પરવાનગી છે.\n<code><references /></code> કે <code><references group=\"...\" /></code> વાપરો",
|
||||
"cite_error_references_no_backlink_label": "કસ્ટમ બેકલિંક લેબલ ખલાસ થઈ ગયાં.\n<nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki> સંદેશામાં વહારે લેબલ બનાવો..",
|
||||
"cite_error_no_link_label_group": "\"$1\" સમૂહ માટે કસ્ટમ બેકલિંક લેબલ ખલાસ થઈ ગયાં.\n<nowiki>[[MediaWiki:$2]]</nowiki> સંદેશામાં વહારે લેબલ બનાવો..",
|
||||
"cite_error_references_no_text": "અમાન્ય <code><ref></code> ટેગ;\n<code>$1</code>નામના સંદર્ભ માટે કોઈ પણ લેખન અપાયું નથી",
|
||||
"cite_error_included_ref": "<code><ref></code> ટેગને બંધ કરતું <code></ref></code> ખૂટે છે",
|
||||
"cite_error_refs_without_references": "<code><ref></code> ટેગ અસ્તિત્વમાં છે, પણ <code><references/></code> ઍવો કોઈ ટેગ ન મળ્યો.",
|
||||
"cite_error_group_refs_without_references": " \"$1\" નામના સમૂહમાં <code><ref></code> ટેગ વિહરમાન છે, પણ તેને અનુરૂપ <code><references group=\"$1\"/></code> ટેગ ન મળ્યો.",
|
||||
"cite_error_references_group_mismatch": "<code><ref></code> ટેગને <code><references></code> માં આ વિરોધાભાસી લક્ષણ છે : \"$1\".",
|
||||
"cite_error_references_missing_group": "<code><references></code>માં વ્યાખ્યાયીત <code><ref></code> ટેગનો સમૂહ ગુણ \"$1\" છે જે પહેલાંની પહેલાંના લેખનમાં નથી.",
|
||||
"cite_error_references_missing_key": "<code><references></code> માં વ્યાખ્યાયિત $1\" નામ સાથેનું <code><ref></code> ટેગ આગળના લેખનમાં વપરાયો નથી.",
|
||||
"cite_error_references_no_key": "<code><ref></code> ટેગની વ્યાખ્યા <code><references></code> ને કોઈ નામકરણ નથી.",
|
||||
"cite_error_empty_references_define": "<code><ref></code> ટેગની વ્યાખ્યા <code><references></code> માં \"$1\" નામે છે તેને કોઈ content નથી.",
|
||||
"cite_references_link_many_format_backlink_labels": ""
|
||||
}
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Amire80",
|
||||
"Rotem Liss",
|
||||
"Rotemliss",
|
||||
"YaronSh"
|
||||
]
|
||||
},
|
||||
"cite-desc": "הוספת תגי <span dir=\"ltr\"><nowiki><ref[ name=id]></nowiki></span> ו־<span dir=\"ltr\"><nowiki><references/></nowiki></span> עבור הערות שוליים",
|
||||
"cite_error": "שגיאת ציטוט: $1",
|
||||
"cite_error_ref_numeric_key": "תג <code><ref></code> לא תקין;\nשם (name) לא יכול להיות מספר שלם פשוט. יש להשתמש בכותרת תיאורית",
|
||||
"cite_error_ref_no_key": "תג <code><ref></code> לא תקין;\nלהערות שוליים ללא תוכן חייב להיות שם (name)",
|
||||
"cite_error_ref_too_many_keys": "תג <code><ref></code> לא תקין;\nשמות שגויים, למשל, רבים מדי",
|
||||
"cite_error_ref_no_input": "תג <code><ref></code> לא תקין;\nלהערות שוליים ללא שם חייב להיות תוכן",
|
||||
"cite_error_references_invalid_parameters": "תג <code><references></code> לא תקין;\nלא ניתן להשתמש בפרמטרים.\nיש להשתמש בקוד <code dir=\"ltr\"><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "תג <code><references></code> לא תקין;\nרק הפרמטר \"group\" מותר לשימוש.\nאנא השתמשו בקוד <code dir=\"ltr\"><references /></code>, או בקוד <code dir=\"ltr\"><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "אזלו תוויות הקישורים המותאמות אישית.\nאנא הגדירו עוד תוויות בהודעת המערכת <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>.",
|
||||
"cite_error_no_link_label_group": "אזלו תוויות קישורים מותאמות אישית לקבוצה \"$1\".\nהגדירו עוד תוויות בהודעת המערכת <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "תג <code><ref></code> לא תקין;\nלא נכתב טקסט עבור הערות השוליים בשם <code>$1</code>",
|
||||
"cite_error_included_ref": "חסר תג <code></ref></code> סוגר שמתאים לתג <code><ref></code>",
|
||||
"cite_error_group_refs_without_references": "קיימים תגי <code><ref></code> עבור קבוצה בשם \"$1\", אך לא נמצא תג <code dir=\"ltr\"><references group=\"$1\"/></code> מתאים, או שחסר <code dir=\"ltr\"></ref></code> סוגר",
|
||||
"cite_error_references_group_mismatch": "לתג <code><ref></code> המוגדר בתוך <code><references></code> יש מאפיין קבוצה (group) סותר, \"$1\".",
|
||||
"cite_error_references_missing_group": "לתג <code><ref></code> המוגדר בתוך <code><references></code> יש מאפיין קבוצה (group) בעל הערך \"$1\", שאינו מופיע בטקסט שלפניו.",
|
||||
"cite_error_references_missing_key": "התג <code><ref></code> בשם \"$1\" המוגדר בתוך <code><references></code> אינו נמצא בשימוש בטקסט שלפניו.",
|
||||
"cite_error_references_no_key": "לתג <code><ref></code> המוגדר בתוך <code><references></code> אין מאפיין שם (name).",
|
||||
"cite_error_empty_references_define": "התג <code><ref></code> בעל השם \"$1\" המוגדר בתוך <code><references></code> אינו מכיל תוכן.",
|
||||
"cite_references_link_accessibility_label": "לקפוץ מעלה",
|
||||
"cite_references_link_many_accessibility_label": "לקפוץ מעלה אל:",
|
||||
"cite_error_refs_without_references_category-desc": "בדף הזה יש תגי <code><nowiki><ref></nowiki></code> ללא קבוצה מוגדרת, אבל אין תג <code><nowiki><references /></nowiki></code> מפורש."
|
||||
}
|
File diff suppressed because one or more lines are too long
|
@ -1,29 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Dalibor Bosits",
|
||||
"Dnik",
|
||||
"Roberta F.",
|
||||
"SpeedyGonsales"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Dodaje <nowiki><ref[ name=id]></nowiki> i <nowiki><references/></nowiki> oznake, za citiranje",
|
||||
"cite_error": "Pogrješka u citiranju: $1",
|
||||
"cite_error_ref_numeric_key": "Loša <code><ref></code> oznaka; naziv ne smije biti jednostavni broj, koristite opisni naziv",
|
||||
"cite_error_ref_no_key": "Loša <code><ref></code> oznaka; ref-ovi bez sadržaja moraju imati naziv",
|
||||
"cite_error_ref_too_many_keys": "Loša <code><ref></code> oznaka; loš naziv, npr. previše naziva",
|
||||
"cite_error_ref_no_input": "Loša <code><ref></code> oznaka; ref-ovi bez imena moraju imati sadržaj",
|
||||
"cite_error_references_invalid_parameters": "Loša <code><references></code> oznaka; parametri nisu dozvoljeni, koristite <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Neispravna <code><references></code> oznaka;\nDopuštena je samo opcija \"group\".\nKoristite <code><references /></code>, ili <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Potrošene sve posebne oznake za poveznice unatrag, definirajte više u poruci <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>",
|
||||
"cite_error_no_link_label_group": "Nedovoljan broj proizvoljnih naslova poveznica za grupu \"$1\".\nDefinirajte više putem poruke <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "Nije zadan tekst za izvor <code>$1</code>",
|
||||
"cite_error_included_ref": "Nedostaje zatvarajući <code></ref></code> za <code><ref></code> oznaku",
|
||||
"cite_error_refs_without_references": "oznake <code><ref></code> postoje, ali oznaka <code><references/></code> nije pronađena",
|
||||
"cite_error_group_refs_without_references": "oznake <code><ref></code> postoje za skupinu imenovanom \"$1\", ali nema pripadajuće oznake <code><references group=\"$1\"/></code>",
|
||||
"cite_error_references_group_mismatch": "<code><ref></code> oznaka u <code><references></code> ima konfliktni grupni atribut \"$1\".",
|
||||
"cite_error_references_missing_group": "<code><ref></code> oznaka definirana u <code><references></code> ima grupni atribut \"$1\" koji se ne pojavljuje u ranijem tekstu.",
|
||||
"cite_error_references_missing_key": "<code><ref></code> oznaka s imenom \"$1\" definirana u <code><references></code> nije prethodno rabljena u tekstu.",
|
||||
"cite_error_references_no_key": "<code><ref></code> oznaka definirana u <code><references></code> nema parametar \"name\" (ime).",
|
||||
"cite_error_empty_references_define": "<code><ref></code> oznaka definirana u <code><references></code> s imenom \"$1\" nema sadržaja."
|
||||
}
|
|
@ -1,28 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Michawiki"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Přidawa taflički <nowiki><ref[ name=id]></nowiki> a <nowiki><references /></nowiki> za žórłowe podaća",
|
||||
"cite_error": "Referencny zmylk: $1",
|
||||
"cite_error_ref_numeric_key": "Njepłaćiwe wužiwanje taflički <code><ref></code>; \"name\" njesmě jednora hódnota integer być, wužij wopisowace mjeno.",
|
||||
"cite_error_ref_no_key": "Njepłaćiwe wužiwanje taflički <code><ref></code>; \"ref\" bjez wobsaha dyrbi mjeno měć.",
|
||||
"cite_error_ref_too_many_keys": "Njepłaćiwe wužiwanje taflički <code><ref></code>; njepłaćiwe mjena, na př. předołho",
|
||||
"cite_error_ref_no_input": "Njepłaćiwe wužiwanje taflički <code><ref></code>; \"ref\" bjez mjena dyrbi wobsah měć",
|
||||
"cite_error_references_invalid_parameters": "Njepłaćiwe wužiwanje taflički <code><references></code>; žane parametry dowolene, wužij jenož <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Njepłaćiwa taflička <code><references></code>;\njenož parameter \"group\" je dowoleny.\nWužij <code><references /></code> abo <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Zwučene etikety wróćowotkazow wućerpjene.\nDefinuj wjace w powěsći <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>",
|
||||
"cite_error_no_link_label_group": "Swójske wotkazowe etikety za skupinu \"$1\" hižo njejsu.\nDefinuj dalše w zdźělence <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "Njepłaćiwa referenca formy <code><ref></code>; žadyn tekst za referency z mjenom <code>$1</code> podaty.",
|
||||
"cite_error_included_ref": "Kónčny <code></ref></code> za tafličku <code><ref></code> faluje",
|
||||
"cite_error_refs_without_references": "Taflički <code><ref></code> ekistuja, ale žana taflička code><references/></code> je so namakała",
|
||||
"cite_error_group_refs_without_references": "Taflički <code><ref></code> eksistuja za skupinu z mjenom \"$1\", ale njeje so wotpowědowaca taflička <code><references group=\"$1\"/></code> namakała abo začinjacy <code></ref></code> faluje",
|
||||
"cite_error_references_group_mismatch": "Taflička <code><ref></code> w <code><references></code> je ze skupinskim atributom \"$1\" w konflikće.",
|
||||
"cite_error_references_missing_group": "Taflička <code><ref></code>, kotraž je w <code><references></code> definowana, ma skupinski atribut \"$1\", kotryž so w prjedawšim teksće njejewi.",
|
||||
"cite_error_references_missing_key": "Taflička <code><ref></code> z mjenom \"$1\", kotraž je w <code><references></code> definowana, so w prjedawšim teksće njewužiwa.",
|
||||
"cite_error_references_no_key": "Taflička <code><ref></code>, kotraž je w <code><references></code> definowana, mjenowy atribut nima.",
|
||||
"cite_error_empty_references_define": "Taflička <code><ref></code>, kotraž je w <code><references></code> z mjenom \"$1\" definowana, wobsah nima.",
|
||||
"cite_references_link_accessibility_label": "Horje skočić",
|
||||
"cite_references_link_many_accessibility_label": "Horje skočić do:"
|
||||
}
|
|
@ -1,18 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Boukman",
|
||||
"Masterches"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Ajoute baliz sa yo <nowiki><ref[ name=id]></nowiki> epi <nowiki><referans/></nowiki>, pou sitasyon yo.",
|
||||
"cite_error": "Erè nan sitasyon : $1",
|
||||
"cite_error_ref_numeric_key": "Etikèt <code><ref></code> pa valab;\nnon pa kapab yon nimewo. Itilize yon tit ki dekri bagay la.",
|
||||
"cite_error_ref_no_key": "Etikèt <code><ref></code> pa valab;\nreferans ki pa genyen anyen ladan l dwe gen yon non",
|
||||
"cite_error_ref_too_many_keys": "Etikèt <code><ref></code> pa valab;\nnon yo pa bon (pa ekzanp, genyen trop)",
|
||||
"cite_error_ref_no_input": "Etikèt <code><ref></code> pa valab;\nreferans ki pa gen non dwe gen kontni nan yo",
|
||||
"cite_error_references_invalid_parameters": "Etikèt <code><references></code> pa valab;\npa gendwa mete paramèt.\nItilize <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Etikèt <code><referans></code> pa valab;\nse paramèt \"group\" sèlman ki otorize.\nItilize <code><references /></code>, oubyen <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Pa genyen etikèt pèsonalize ankò.\nPresize yon kantite ki pi gwo nan mesaj <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>",
|
||||
"cite_error_references_no_text": "Etikèt <code><ref></code> pa valab;\nNou pa bay pyès tèks pou referans ki rele <code>$1</code>"
|
||||
}
|
|
@ -1,29 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Dani",
|
||||
"Glanthor Reviol",
|
||||
"KossuthRad"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Lehetővé teszi idézések létrehozását <nowiki><ref[ name=id]></nowiki> és <nowiki><references/></nowiki> tagek segítségével",
|
||||
"cite_error": "Forráshivatkozás-hiba: $1",
|
||||
"cite_error_ref_numeric_key": "Érvénytelen <code><ref></code> tag; a name értéke nem lehet csupán egy szám, használj leíró címeket",
|
||||
"cite_error_ref_no_key": "Érvénytelen <code><ref></code> tag; a tartalom nélküli ref-eknek kötelező nevet (name) adni",
|
||||
"cite_error_ref_too_many_keys": "Érvénytelen <code><ref></code> tag; hibás nevek, pl. túl sok",
|
||||
"cite_error_ref_no_input": "Érvénytelen <code><ref></code> tag; a név (name) nélküli ref-eknek adni kell valamilyen tartalmat",
|
||||
"cite_error_references_invalid_parameters": "Érvénytelen <code><references></code> tag; nincsenek paraméterei, használd a <code><references /></code> formát",
|
||||
"cite_error_references_invalid_parameters_group": "Érvénytelen <code><references></code> tag; csak a „group” attribútum használható. Használd a <code><references /></code>, vagy a <code><references group=\"...\" /></code> formát.",
|
||||
"cite_error_references_no_backlink_label": "Elfogytak a visszahivatkozásra használt címkék, adj meg többet a <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki> üzenetben",
|
||||
"cite_error_no_link_label_group": "Nincs több egyedi címke a következő csoport számára: „$1”.\nAdj meg többet a <nowiki>[[MediaWiki:$2]]</nowiki> lapon.",
|
||||
"cite_error_references_no_text": "Érvénytelen <code><ref></code> tag; nincs megadva szöveg a(z) <code>$1</code> nevű ref-eknek",
|
||||
"cite_error_included_ref": "Egy <code><ref></code> tag lezáró <code></ref></code> része hiányzik",
|
||||
"cite_error_refs_without_references": "<code><ref></code>-ek vannak a lapon, de nincsen <code><references/></code>",
|
||||
"cite_error_group_refs_without_references": "<code><ref></code>-ek léteznek a(z) „$1” csoporthoz, de nincs hozzá <code><references group=\"$1\"/></code>",
|
||||
"cite_error_references_group_mismatch": "A <code><references></code> és a benne található <code><ref></code> tag csoport-attribútuma („$1”) nem egyezik meg.",
|
||||
"cite_error_references_missing_group": "<code><ref></code> tag lett lett definiálva egy olyan <code><references></code> tagben, amely csoport-attribútuma („$1”) nem szerepel a szöveg korábbi részében.",
|
||||
"cite_error_references_missing_key": "a <code><references></code> tagben definiált „$1” nevű <code><ref></code> tag nem szerepel a szöveg korábbi részében.",
|
||||
"cite_error_references_no_key": "a <code><references></code> tagben definiált <code><ref></code> tagnek nincs név attribútuma.",
|
||||
"cite_error_empty_references_define": "a <code><references></code> szakaszban definiált „$1” <code><ref></code> tagnek nincs tartalma.",
|
||||
"cite_references_link_many": "<li id=\"$1\"><span class=\"mw-cite-backlink\">^ $2</span> $3</li>"
|
||||
}
|
|
@ -1,28 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"McDutchie"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Adde etiquettas <nowiki><ref[ name=id]></nowiki> e <nowiki><references/></nowiki>, pro citationes",
|
||||
"cite_error": "Error de citation: $1",
|
||||
"cite_error_ref_numeric_key": "Etiquetta <code><ref></code> invalide;\nle nomine non pote esser un numero integre. Usa un titulo descriptive",
|
||||
"cite_error_ref_no_key": "Etiquetta <code><ref></code> invalide;\nle refs sin contento debe haber un nomine",
|
||||
"cite_error_ref_too_many_keys": "Etiquetta <code><ref></code> invalide;\nnomines invalide, p.ex. troppo de nomines",
|
||||
"cite_error_ref_no_input": "Etiquetta <code><ref></code> invalide;\nle refs sin nomine debe haber contento",
|
||||
"cite_error_references_invalid_parameters": "Etiquetta <code><references></code> invalide;\nnulle parametros es permittite.\nUsa <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Etiquetta <code><references></code> invalide;\nsolmente le parametro \"group\" es permittite.\nUsa <code><references /></code>, o <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Le etiquettas de retroligamine personalisate es exhaurite.\nDefini plus in le message <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>",
|
||||
"cite_error_no_link_label_group": "Exhauriva le etiquettas de ligamine personalisabile pro le gruppo \"$1\".\nDefini plus de istes in le message <nowiki>[[MediaWiki:$2]]</nowiki>.",
|
||||
"cite_error_references_no_text": "Etiquetta <code><ref></code> invalide;\nnulle texto esseva fornite pro le refs nominate <code>$1</code>",
|
||||
"cite_error_included_ref": "Le clausura <code></ref></code> manca pro le etiquetta <code><ref></code>",
|
||||
"cite_error_group_refs_without_references": "Il existe etiquettas <code><ref></code> pro un gruppo con nomine \"$1\", ma nulle etiquetta <code><references group=\"$1\"/></code> correspondente ha essite trovate, o un etiquetta de termination <code></ref></code> manca.",
|
||||
"cite_error_references_group_mismatch": "Le etiquetta <code><ref></code> in <code><references></code> ha un attributo de gruppo \"$1\" confligente.",
|
||||
"cite_error_references_missing_group": "Le etiquetta <code><ref></code> definite in <code><references></code> ha un attributo de gruppo \"$1\" que non appare in le texto precedente.",
|
||||
"cite_error_references_missing_key": "Le etiquetta <code><ref></code> con nomine \"$1\" definite in <code><references></code> non es usate in le texto precedente.",
|
||||
"cite_error_references_no_key": "Le etiquetta <code><ref></code> definite in <code><references></code> non ha un attributo de nomine.",
|
||||
"cite_error_empty_references_define": "Le etiquetta <code><ref></code> definite in <code><references></code> con nomine \"$1\" ha nulle contento.",
|
||||
"cite_references_link_accessibility_label": "Retornar",
|
||||
"cite_references_link_many_accessibility_label": "Retornar a:",
|
||||
"cite_error_refs_without_references_category-desc": "Le pagina defini <code><nowiki><ref></nowiki></code>erentias sin gruppo specific, ma non ha un etiquetta <code><nowiki><references /></nowiki></code> explicite."
|
||||
}
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Bennylin",
|
||||
"Irwangatot",
|
||||
"IvanLanin",
|
||||
"Iwan Novirion",
|
||||
"Rex"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Menambahkan tag <nowiki><ref[ name=id]></nowiki> dan <nowiki><references/></nowiki> untuk kutipan",
|
||||
"cite_error": "Kesalahan pengutipan: $1",
|
||||
"cite_error_ref_numeric_key": "Tag <code><ref></code> tidak sah; \nnama tidak boleh intejer sederhana.\nGunakan nama deskriptif",
|
||||
"cite_error_ref_no_key": "Tag <code><ref></code> tidak sah;\nreferensi tanpa isi harus memiliki nama",
|
||||
"cite_error_ref_too_many_keys": "Tag <code><ref></code> tidak sah;\nnama tidak sah; misalnya, terlalu banyak",
|
||||
"cite_error_ref_no_input": "Tag <code><ref></code> tidak sah;\nreferensi tanpa nama harus memiliki isi",
|
||||
"cite_error_references_invalid_parameters": "Tag <code><references></code> tidak sah;\nparameter tidak diperbolehkan.\nGunakan <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Tag <code><references></code> tidak sah;\nhanya parameter \"group\" yang diizinkan.\nGunakan <code><references /></code>, atau <code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Kehabisan label pralana balik tersuai.\nTambahkan lagi di pesan sistem <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>",
|
||||
"cite_error_no_link_label_group": "Pranala kustom label untuk kelompok \"$1\" habis.\nTambahkan ketentuan dalam pesan <nowiki> [[MediaWiki:$2]] </nowiki> .",
|
||||
"cite_error_references_no_text": "Tag <code><ref></code> tidak sah; \ntidak ditemukan teks untuk ref bernama <code>$1</code>",
|
||||
"cite_error_included_ref": "Tag <code><ref></code> harus ditutup oleh <code></ref></code>",
|
||||
"cite_error_refs_without_references": "Tag <code><ref></code> ditemukan, tapi tag <code><references/></code> tidak ditemukan",
|
||||
"cite_error_group_refs_without_references": "Ditemukan tag <code><ref></code> untuk kelompok bernama \"$1\", tapi tidak ditemukan tag <code><references group=\"$1\"/></code> yang berkaitan",
|
||||
"cite_error_references_group_mismatch": "Tag <code><ref></code> di <code><references></code> ada atribut kelompok \"$1\" yang konflik.",
|
||||
"cite_error_references_missing_group": "Tag <code><ref></code> yang didefinisikan di <code><references></code> memiliki atribut kelompok \"$1\" yang tidak ditampilkan di teks sebelumnya.",
|
||||
"cite_error_references_missing_key": "Tag <code><ref></code> dengan nama \"$1\" yang didefinisikan di <code><references></code> tidak digunakan pada teks sebelumnya.",
|
||||
"cite_error_references_no_key": "Tag <code><ref></code> yang didefinisikan di di <code><references></code> tidak memiliki nama atribut.",
|
||||
"cite_error_empty_references_define": "Tag <code><ref></code> yang didefinisikan di di <code><references></code> dengan nama \"$1\" tidak memiliki isi.",
|
||||
"cite_references_link_many_format": "<sup>[[#$1|$2]]</sup>"
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Ukabia"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Tikwá <nowiki><ref[ áhà=id]></nowiki> and <nowiki><references/></nowiki> ndö, maka ntabi okwu"
|
||||
}
|
|
@ -1,28 +0,0 @@
|
|||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Lam-ang"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Aginayon kadagiti etiketa ti <nowiki><ref[ name=id]></nowiki> ken <nowiki><references/></nowiki>, para kadagiti panagdakamat",
|
||||
"cite_error": "Biddut ti dakamat: $1",
|
||||
"cite_error_ref_numeric_key": "Imbalido ti etiketa ti <code><ref></code>;\nti nagan ket saan a mabalin a nalaka a sibubukel. Agusar ti makaipalawag a titulo",
|
||||
"cite_error_ref_no_key": "Imbalido nga etiketa ti <code><ref></code> ;\ndagita ref nga awan nagyanna ket masapul nga adda naganna",
|
||||
"cite_error_ref_too_many_keys": "Imbalido nga etiketa ti <code><ref></code> ;\nimbalido a nag-nagan, a kas adu unay",
|
||||
"cite_error_ref_no_input": "Imbalido nga etiketa ti <code><ref></code> ;\ndagiti ref nga awan ti naganna ket masapul nga addaan ti nagyan",
|
||||
"cite_error_references_invalid_parameters": "Imbalido nga etiketa ti <code><references></code>;\nsaan a maipalubos dagiti parametro.\nUsaren ti <code><references /></code>",
|
||||
"cite_error_references_invalid_parameters_group": "Imbalido nga etiketa ti <code><references></code> ;\nmaipalubos laeng ti parametro ti \"grupo\" .\nUsaren ti <code><references /></code> , wenno<code><references group=\"...\" /></code>",
|
||||
"cite_error_references_no_backlink_label": "Naibusan kadagiti etiketa ti naisangayan a silpo ti likud.\nIpalawag pay ti adu idiay mensahe ti <nowiki>[[MediaWiki:Cite references link many format backlink labels]]</nowiki>",
|
||||
"cite_error_no_link_label_group": "Naibusan kadagiti etiketa ti nangruna a silpo para iti grupo ti \"$1\".\nIpalawag pay ti adu idiay mensahe ti <nowiki>[[MediaWiki:$2]]</nowiki> .",
|
||||
"cite_error_references_no_text": "Imbalido nga etiketa ti <code><ref></code> ;\nawan ti testo a naited para kadagiti ref a nanaganan <code>$1</code>",
|
||||
"cite_error_included_ref": "Irikepen ti <code></ref></code> napukaw para iti etiketa ti <code><ref></code>",
|
||||
"cite_error_group_refs_without_references": "Adda dagiti etiketa ti <code><ref></code> para iti grupo a nanaganan ti \"$1\", ngem awan ti kapada nga etiketa ti <code><references group=\"$1\"/></code> a nabirukan, wenno awan ti pangrikep ti <code></ref></code>",
|
||||
"cite_error_references_group_mismatch": "Ti etiketa ti <code><ref></code> iday <code><references></code> ket addan ti kasinnungat a gupit ti grupo ti \"$1\".",
|
||||
"cite_error_references_missing_group": "Ti etiketa ti <code><ref></code> a naipalawag idiay <code><references></code> ket addaan ti gupit ti grupo ti \"$1\" a saan nga agparang iti napalabas a testo.",
|
||||
"cite_error_references_missing_key": "Ti etiketa ti <code><ref></code> nga addaan ti nagan ti \"$1\" a naipalawag idiay <code><references></code> ket saan a nausar iti napalabas a testo.",
|
||||
"cite_error_references_no_key": "Ti etiketa ti <code><ref></code> a naipalawag idiay <code><references></code> ket awan ti nainagan a gupit.",
|
||||
"cite_error_empty_references_define": "Ti etiketa ti <code><ref></code> a naipalawag idiay <code><references></code> nga addaan ti nagan a \"$1\" ket awan ti nagyanna.",
|
||||
"cite_references_link_accessibility_label": "Mapan iti ngato",
|
||||
"cite_references_link_many_accessibility_label": "Mapan aginggana iti:",
|
||||
"cite_error_refs_without_references_category-desc": "Ti panid ket addaan kadagiti <code><nowiki><ref></nowiki></code> a naipalawag nga awan ti naisangayan a grupo, ngem awan ti nalawag nga etiketa ti <code><nowiki><references /></nowiki></code>."
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue