Remove extensions that come bundled with MW
This commit is contained in:
@@ -1,76 +0,0 @@
|
||||
Principal Authors (major contributors, alphabetically)
|
||||
|
||||
Ævar Arnfjörð Bjarmason
|
||||
Andrew Garrett
|
||||
Brion Vibber
|
||||
Ed Sanders
|
||||
Marius Hoch
|
||||
Steve Sanbeg
|
||||
Trevor Parscal
|
||||
Yair rand
|
||||
|
||||
Patch Contributors (minor contributors, alphabetically)
|
||||
|
||||
Aaron Schulz
|
||||
Alex Monk
|
||||
Alex Z.
|
||||
Alexandre Emsenhuber
|
||||
Amir E. Aharoni
|
||||
Antoine Musso
|
||||
Aryeh Gregor
|
||||
Bartosz Dziewoński
|
||||
Brad Jorsch
|
||||
Chad Horohoe
|
||||
Daniel Cannon
|
||||
Danny B.
|
||||
Derk-Jan Hartman
|
||||
Erick Guan
|
||||
Fomafix
|
||||
Gabriel Wicke
|
||||
Happy-melon
|
||||
Ivan Lanin
|
||||
Jackmcbarn
|
||||
James D. Forrester
|
||||
Jan Paul Posma
|
||||
Jens Frank
|
||||
Jon Robson
|
||||
Kaity Hammerstein
|
||||
Kevin Brown
|
||||
Kevin Israel
|
||||
Kunal Mehta
|
||||
Marc Ordinas i Llopis
|
||||
Mark A. Hershberger
|
||||
Max Semenik
|
||||
Meno25
|
||||
Moriel Schottlender
|
||||
Nemo bis
|
||||
Nick Jenkins
|
||||
Nik Everett
|
||||
Niklas Laxström
|
||||
Ori.livneh
|
||||
OverlordQ
|
||||
Peter Gehres
|
||||
Philip Tzou
|
||||
Platonides
|
||||
Purodha B Blissenbach
|
||||
Raimond Spekking
|
||||
Remember the dot
|
||||
Roan Kattouw
|
||||
Rob Church
|
||||
Rob Moen
|
||||
Robert Rohde
|
||||
Robin Pepermans
|
||||
Ryan Kaldari
|
||||
Sam Reed
|
||||
Shinjiman
|
||||
Siebrand Mazeland
|
||||
Thalia Chan
|
||||
Thomas Dalton
|
||||
ThomasV
|
||||
Tim Starling
|
||||
Tim Weyer
|
||||
Timo Tijhof
|
||||
Tobias
|
||||
eranroz
|
||||
kghbln
|
||||
mrbluesky
|
@@ -1,108 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* Expose reference information for a page via prop=references API.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
* http://www.gnu.org/copyleft/gpl.html
|
||||
*
|
||||
* @file
|
||||
* @see https://www.mediawiki.org/wiki/Extension:Cite#API
|
||||
*/
|
||||
|
||||
class ApiQueryReferences extends ApiQueryBase {
|
||||
|
||||
public function __construct( $query, $moduleName ) {
|
||||
parent::__construct( $query, $moduleName, 'rf' );
|
||||
}
|
||||
|
||||
public function getAllowedParams() {
|
||||
return [
|
||||
'continue' => [
|
||||
ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
public function execute() {
|
||||
$config = ConfigFactory::getDefaultInstance()->makeConfig( 'cite' );
|
||||
if ( !$config->get( 'CiteStoreReferencesData' ) ) {
|
||||
$this->dieUsage( 'Cite extension reference storage is not enabled', 'citestoragedisabled' );
|
||||
}
|
||||
$params = $this->extractRequestParams();
|
||||
$titles = $this->getPageSet()->getGoodTitles();
|
||||
ksort( $titles );
|
||||
if ( !is_null( $params['continue'] ) ) {
|
||||
$startId = (int)$params['continue'];
|
||||
// check it is definitely an int
|
||||
$this->dieContinueUsageIf( strval( $startId ) !== $params['continue'] );
|
||||
} else {
|
||||
$startId = false;
|
||||
}
|
||||
|
||||
foreach ( $titles as $pageId => $title ) {
|
||||
// Skip until you have the correct starting point
|
||||
if ( $startId !== false && $startId !== $pageId ) {
|
||||
continue;
|
||||
} else {
|
||||
$startId = false;
|
||||
}
|
||||
$storedRefs = Cite::getStoredReferences( $title );
|
||||
$allReferences = array();
|
||||
// some pages may not have references stored
|
||||
if ( $storedRefs !== false ) {
|
||||
// a page can have multiple <references> tags but they all have unique keys
|
||||
foreach ( $storedRefs['refs'] as $index => $grouping ) {
|
||||
foreach ( $grouping as $group => $members ) {
|
||||
foreach ( $members as $name => $ref ) {
|
||||
$ref['name'] = $name;
|
||||
$key = $ref['key'];
|
||||
if ( is_string( $name ) ) {
|
||||
$id = Cite::getReferencesKey( $name . '-' . $key );
|
||||
} else {
|
||||
$id = Cite::getReferencesKey( $key );
|
||||
}
|
||||
$ref['group'] = $group;
|
||||
$ref['reflist'] = $index;
|
||||
$allReferences[$id] = $ref;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
// set some metadata since its an assoc data structure
|
||||
ApiResult::setArrayType( $allReferences, 'kvp', 'id' );
|
||||
// Ship a data representation of the combined references.
|
||||
$fit = $this->addPageSubItems( $pageId, $allReferences );
|
||||
if ( !$fit ) {
|
||||
$this->setContinueEnumParameter( 'continue', $pageId );
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function getCacheMode( $params ) {
|
||||
return 'public';
|
||||
}
|
||||
|
||||
/**
|
||||
* @see ApiBase::getExamplesMessages()
|
||||
*/
|
||||
protected function getExamplesMessages() {
|
||||
return array(
|
||||
'action=query&prop=references&titles=Albert%20Einstein' =>
|
||||
'apihelp-query+references-example-1',
|
||||
);
|
||||
}
|
||||
|
||||
}
|
@@ -1,339 +0,0 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Lesser General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this
|
||||
when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) year name of author
|
||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may
|
||||
be called something other than `show w' and `show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1989
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License.
|
@@ -1,339 +0,0 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Lesser General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this
|
||||
when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) year name of author
|
||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may
|
||||
be called something other than `show w' and `show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1989
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License.
|
@@ -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( 'wfJsonI18nShim08ab9400d57d1e05' ) ) {
|
||||
function wfJsonI18nShim08ab9400d57d1e05( $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'][] = 'wfJsonI18nShim08ab9400d57d1e05';
|
||||
}
|
@@ -1,14 +0,0 @@
|
||||
<?php
|
||||
|
||||
if ( function_exists( 'wfLoadExtension' ) ) {
|
||||
wfLoadExtension( 'Cite' );
|
||||
// Keep i18n globals so mergeMessageFileList.php doesn't break
|
||||
$wgMessagesDirs['Cite'] = __DIR__ . '/i18n';
|
||||
/* wfWarn(
|
||||
'Deprecated PHP entry point used for Cite extension. Please use wfLoadExtension instead, ' .
|
||||
'see https://www.mediawiki.org/wiki/Extension_registration for more details.'
|
||||
); */
|
||||
return true;
|
||||
} else {
|
||||
die( 'This version of the Cite extension requires MediaWiki 1.25+' );
|
||||
}
|
@@ -1,34 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* ResourceLoaderFileModule for adding the content language Cite CSS
|
||||
*
|
||||
* @file
|
||||
* @ingroup Extensions
|
||||
* @copyright 2011-2016 Cite VisualEditor Team and others; see AUTHORS.txt
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
|
||||
*/
|
||||
|
||||
class CiteCSSFileModule extends ResourceLoaderFileModule {
|
||||
public function __construct(
|
||||
$options = array(),
|
||||
$localBasePath = null,
|
||||
$remoteBasePath = null
|
||||
) {
|
||||
global $wgContLang;
|
||||
|
||||
parent::__construct( $options, $localBasePath, $remoteBasePath );
|
||||
|
||||
// Get the content language code, and all the fallbacks. The first that
|
||||
// has a ext.cite.style.<lang code>.css file present will be used.
|
||||
$langCodes = array_merge( array( $wgContLang->getCode() ),
|
||||
$wgContLang->getFallbackLanguages() );
|
||||
foreach ( $langCodes as $lang ) {
|
||||
$langStyleFile = 'ext.cite.style.' . $lang . '.css';
|
||||
$localPath = $this->getLocalPath( $langStyleFile );
|
||||
if ( file_exists( $localPath ) ) {
|
||||
$this->styles[] = $langStyleFile;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -1,63 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* Resource loader module providing extra data from the server to Cite.
|
||||
*
|
||||
* Temporary hack for T93800
|
||||
*
|
||||
* @file
|
||||
* @ingroup Extensions
|
||||
* @copyright 2011-2016 Cite VisualEditor Team and others; see AUTHORS.txt
|
||||
* @license The MIT License (MIT); see MIT-LICENSE.txt
|
||||
*/
|
||||
|
||||
class CiteDataModule extends ResourceLoaderModule {
|
||||
|
||||
/* Protected Members */
|
||||
|
||||
protected $origin = self::ORIGIN_USER_SITEWIDE;
|
||||
protected $targets = array( 'desktop', 'mobile' );
|
||||
|
||||
/* Methods */
|
||||
|
||||
public function getScript( ResourceLoaderContext $context ) {
|
||||
$citationDefinition = json_decode(
|
||||
$context->msg( 'visualeditor-cite-tool-definition.json' )
|
||||
->inContentLanguage()
|
||||
->plain()
|
||||
);
|
||||
|
||||
$citationTools = array();
|
||||
if ( is_array( $citationDefinition ) ) {
|
||||
foreach ( $citationDefinition as $tool ) {
|
||||
if ( !isset( $tool->title ) ) {
|
||||
$tool->title = $context->msg( 'visualeditor-cite-tool-name-' . $tool->name )
|
||||
->text();
|
||||
}
|
||||
$citationTools[] = $tool;
|
||||
}
|
||||
}
|
||||
|
||||
return
|
||||
've.init.platform.addMessages(' . FormatJson::encode(
|
||||
array(
|
||||
'visualeditor-cite-tool-definition.json' => json_encode( $citationTools )
|
||||
),
|
||||
ResourceLoader::inDebugMode()
|
||||
) . ');';
|
||||
}
|
||||
|
||||
public function getDependencies( ResourceLoaderContext $context = null ) {
|
||||
return array(
|
||||
'ext.visualEditor.base',
|
||||
'ext.visualEditor.mediawiki',
|
||||
);
|
||||
}
|
||||
|
||||
public function getDefinitionSummary( ResourceLoaderContext $context ) {
|
||||
$summary = parent::getDefinitionSummary( $context );
|
||||
$summary[] = array(
|
||||
'script' => $this->getScript( $context ),
|
||||
);
|
||||
return $summary;
|
||||
}
|
||||
}
|
@@ -1,135 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* Cite extension hooks
|
||||
*
|
||||
* @file
|
||||
* @ingroup Extensions
|
||||
* @copyright 2011-2016 Cite VisualEditor Team and others; see AUTHORS.txt
|
||||
* @license The MIT License (MIT); see MIT-LICENSE.txt
|
||||
*/
|
||||
|
||||
class CiteHooks {
|
||||
/**
|
||||
* Convert the content model of a message that is actually JSON to JSON. This
|
||||
* only affects validation and UI when saving and editing, not loading the
|
||||
* content.
|
||||
*
|
||||
* @param Title $title
|
||||
* @param string $model
|
||||
* @return bool
|
||||
*/
|
||||
public static function onContentHandlerDefaultModelFor( Title $title, &$model ) {
|
||||
if (
|
||||
$title->inNamespace( NS_MEDIAWIKI ) &&
|
||||
$title->getText() == 'Visualeditor-cite-tool-definition.json'
|
||||
) {
|
||||
$model = CONTENT_MODEL_JSON;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Conditionally register the unit testing module for the ext.cite.visualEditor module
|
||||
* only if that module is loaded
|
||||
*
|
||||
* @param array $testModules The array of registered test modules
|
||||
* @param ResourceLoader $resourceLoader The reference to the resource loader
|
||||
* @return true
|
||||
*/
|
||||
public static function onResourceLoaderTestModules(
|
||||
array &$testModules,
|
||||
ResourceLoader &$resourceLoader
|
||||
) {
|
||||
$resourceModules = $resourceLoader->getConfig()->get( 'ResourceModules' );
|
||||
|
||||
if (
|
||||
isset( $resourceModules[ 'ext.visualEditor.mediawiki' ] ) ||
|
||||
$resourceLoader->isModuleRegistered( 'ext.visualEditor.mediawiki' )
|
||||
) {
|
||||
$testModules['qunit']['ext.cite.visualEditor.test'] = array(
|
||||
'scripts' => array(
|
||||
'modules/ve-cite/tests/ve.dm.citeExample.js',
|
||||
'modules/ve-cite/tests/ve.dm.Converter.test.js',
|
||||
'modules/ve-cite/tests/ve.dm.InternalList.test.js',
|
||||
'modules/ve-cite/tests/ve.dm.Transaction.test.js',
|
||||
),
|
||||
'dependencies' => array(
|
||||
'ext.cite.visualEditor',
|
||||
'ext.visualEditor.test'
|
||||
),
|
||||
'localBasePath' => __DIR__,
|
||||
'remoteExtPath' => 'Cite',
|
||||
);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Callback for LinksUpdate hook
|
||||
* Post-output processing of references property, for proper db storage
|
||||
* Deferred to avoid performance overhead when outputting the page
|
||||
*
|
||||
* @param LinksUpdate $linksUpdate
|
||||
*/
|
||||
public static function onLinksUpdate( LinksUpdate &$linksUpdate ) {
|
||||
global $wgCiteStoreReferencesData, $wgCiteCacheRawReferencesOnParse;
|
||||
if ( !$wgCiteStoreReferencesData ) {
|
||||
return;
|
||||
}
|
||||
$refData = $linksUpdate->getParserOutput()->getExtensionData( Cite::EXT_DATA_KEY );
|
||||
if ( $refData === null ) {
|
||||
return;
|
||||
}
|
||||
if ( $wgCiteCacheRawReferencesOnParse ) {
|
||||
// caching
|
||||
$cache = ObjectCache::getMainWANInstance();
|
||||
$articleID = $linksUpdate->getTitle()->getArticleID();
|
||||
$key = $cache->makeKey( Cite::EXT_DATA_KEY, $articleID );
|
||||
$cache->set( $key, $refData, Cite::CACHE_DURATION_ONPARSE );
|
||||
}
|
||||
// JSON encode
|
||||
$ppValue = FormatJson::encode( $refData, false, FormatJson::ALL_OK );
|
||||
// GZIP encode references data at maximum compression
|
||||
$ppValue = gzencode( $ppValue, 9 );
|
||||
// split the string in smaller parts that can fit into a db blob
|
||||
$ppValues = str_split( $ppValue, Cite::MAX_STORAGE_LENGTH );
|
||||
foreach ( $ppValues as $num => $ppValue ) {
|
||||
$key = 'references-' . intval( $num + 1 );
|
||||
$linksUpdate->mProperties[$key] = $ppValue;
|
||||
}
|
||||
$linksUpdate->getParserOutput()->setExtensionData( Cite::EXT_DATA_KEY, null );
|
||||
}
|
||||
|
||||
/**
|
||||
* Callback for LinksUpdateComplete hook
|
||||
* If $wgCiteCacheRawReferencesOnParse is set to false, purges the cache
|
||||
* when references are modified
|
||||
*
|
||||
* @param LinksUpdate $linksUpdate
|
||||
*/
|
||||
public static function onLinksUpdateComplete( LinksUpdate &$linksUpdate ) {
|
||||
global $wgCiteStoreReferencesData, $wgCiteCacheRawReferencesOnParse;
|
||||
if ( !$wgCiteStoreReferencesData || $wgCiteCacheRawReferencesOnParse ) {
|
||||
return;
|
||||
}
|
||||
// if we can, avoid clearing the cache when references were not changed
|
||||
if ( method_exists( $linksUpdate, 'getAddedProperties' )
|
||||
&& method_exists( $linksUpdate, 'getRemovedProperties' )
|
||||
) {
|
||||
$addedProps = $linksUpdate->getAddedProperties();
|
||||
$removedProps = $linksUpdate->getRemovedProperties();
|
||||
if ( !isset( $addedProps['references-1'] )
|
||||
&& !isset( $removedProps['references-1'] )
|
||||
) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
$cache = ObjectCache::getMainWANInstance();
|
||||
$articleID = $linksUpdate->getTitle()->getArticleID();
|
||||
$key = $cache->makeKey( Cite::EXT_DATA_KEY, $articleID );
|
||||
// delete with reduced hold off period (LinksUpdate uses a master connection)
|
||||
$cache->delete( $key, WANObjectCache::MAX_COMMIT_DELAY );
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@@ -1,51 +0,0 @@
|
||||
/*!
|
||||
* Grunt file
|
||||
*
|
||||
* @package Cite
|
||||
*/
|
||||
|
||||
/*jshint node:true */
|
||||
module.exports = function ( grunt ) {
|
||||
'use strict';
|
||||
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
|
||||
grunt.loadNpmTasks( 'grunt-jscs' );
|
||||
grunt.loadNpmTasks( 'grunt-jsonlint' );
|
||||
grunt.loadNpmTasks( 'grunt-banana-checker' );
|
||||
grunt.initConfig( {
|
||||
jshint: {
|
||||
options: {
|
||||
jshintrc: true
|
||||
},
|
||||
all: [
|
||||
'**/*.js',
|
||||
'{.jsduck,build}/**/*.js',
|
||||
'modules/**/*.js',
|
||||
'!node_modules/**'
|
||||
]
|
||||
},
|
||||
banana: {
|
||||
core: [ 'i18n/' ],
|
||||
ve: [ 'modules/ve-cite/i18n/' ]
|
||||
},
|
||||
jscs: {
|
||||
fix: {
|
||||
options: {
|
||||
fix: true
|
||||
},
|
||||
src: '<%= jshint.all %>'
|
||||
},
|
||||
main: {
|
||||
src: '<%= jshint.all %>'
|
||||
}
|
||||
},
|
||||
jsonlint: {
|
||||
all: [
|
||||
'**/*.json',
|
||||
'!node_modules/**'
|
||||
]
|
||||
}
|
||||
} );
|
||||
|
||||
grunt.registerTask( 'test', [ 'jshint', 'jscs:main', 'jsonlint', 'banana' ] );
|
||||
grunt.registerTask( 'default', 'test' );
|
||||
};
|
@@ -1,25 +0,0 @@
|
||||
Copyright (c) 2011-2016 Cite VisualEditor Team and others under the terms
|
||||
of The MIT License (MIT), as follows:
|
||||
|
||||
This software consists of voluntary contributions made by many
|
||||
individuals (AUTHORS.txt) For exact contribution history, see the
|
||||
revision history and logs, available at https://gerrit.wikimedia.org
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@@ -1,14 +0,0 @@
|
||||
Cite
|
||||
=============
|
||||
|
||||
The Cite extension provides a way for users to create references as footnotes to articles.
|
||||
|
||||
See https://www.mediawiki.org/wiki/Extension:Cite for detailed documentation.
|
||||
|
||||
Configuration
|
||||
-------------
|
||||
* `$wgCiteStoreReferencesData`: If set to true, references are saved in the database so that
|
||||
other extensions can retrieve them independently of the main article content.
|
||||
* `$wgCiteCacheReferencesDataOnParse`: (`$wgCiteStoreReferencesData` required) By default,
|
||||
references are cached only on database access. If set to true, references are also cached
|
||||
whenever pages are parsed.
|
@@ -1,420 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* Aliases for Special:Cite
|
||||
*
|
||||
* @file
|
||||
* @ingroup Extensions
|
||||
*/
|
||||
// @codingStandardsIgnoreFile
|
||||
|
||||
$specialPageAliases = array();
|
||||
|
||||
/** English (English) */
|
||||
$specialPageAliases['en'] = array(
|
||||
'Cite' => array( 'Cite' ),
|
||||
);
|
||||
|
||||
/** Arabic (العربية) */
|
||||
$specialPageAliases['ar'] = array(
|
||||
'Cite' => array( 'استشهاد' ),
|
||||
);
|
||||
|
||||
/** Egyptian Spoken Arabic (مصرى) */
|
||||
$specialPageAliases['arz'] = array(
|
||||
'Cite' => array( 'استشهاد' ),
|
||||
);
|
||||
|
||||
/** Assamese (অসমীয়া) */
|
||||
$specialPageAliases['as'] = array(
|
||||
'Cite' => array( 'উদ্ধৃতি' ),
|
||||
);
|
||||
|
||||
/** Bikol Central (Bikol Central) */
|
||||
$specialPageAliases['bcl'] = array(
|
||||
'Cite' => array( 'Sambitón' ),
|
||||
);
|
||||
|
||||
/** Bulgarian (български) */
|
||||
$specialPageAliases['bg'] = array(
|
||||
'Cite' => array( 'Цитиране' ),
|
||||
);
|
||||
|
||||
/** Banjar (Bahasa Banjar) */
|
||||
$specialPageAliases['bjn'] = array(
|
||||
'Cite' => array( 'Juhut' ),
|
||||
);
|
||||
|
||||
/** Breton (brezhoneg) */
|
||||
$specialPageAliases['br'] = array(
|
||||
'Cite' => array( 'Menegiñ' ),
|
||||
);
|
||||
|
||||
/** Bosnian (bosanski) */
|
||||
$specialPageAliases['bs'] = array(
|
||||
'Cite' => array( 'Citiraj' ),
|
||||
);
|
||||
|
||||
/** буряад (буряад) */
|
||||
$specialPageAliases['bxr'] = array(
|
||||
'Cite' => array( 'Сайт' ),
|
||||
);
|
||||
|
||||
/** Catalan (català) */
|
||||
$specialPageAliases['ca'] = array(
|
||||
'Cite' => array( 'Citau', 'Citeu' ),
|
||||
);
|
||||
|
||||
/** Min Dong Chinese (Mìng-dĕ̤ng-ngṳ̄) */
|
||||
$specialPageAliases['cdo'] = array(
|
||||
'Cite' => array( '註' ),
|
||||
);
|
||||
|
||||
/** Chechen (нохчийн) */
|
||||
$specialPageAliases['ce'] = array(
|
||||
'Cite' => array( 'Дош' ),
|
||||
);
|
||||
|
||||
/** Czech (čeština) */
|
||||
$specialPageAliases['cs'] = array(
|
||||
'Cite' => array( 'Citovat' ),
|
||||
);
|
||||
|
||||
/** Danish (dansk) */
|
||||
$specialPageAliases['da'] = array(
|
||||
'Cite' => array( 'Citer' ),
|
||||
);
|
||||
|
||||
/** German (Deutsch) */
|
||||
$specialPageAliases['de'] = array(
|
||||
'Cite' => array( 'Zitierhilfe', 'Zitieren' ),
|
||||
);
|
||||
|
||||
/** Zazaki (Zazaki) */
|
||||
$specialPageAliases['diq'] = array(
|
||||
'Cite' => array( 'Sita' ),
|
||||
);
|
||||
|
||||
/** Lower Sorbian (dolnoserbski) */
|
||||
$specialPageAliases['dsb'] = array(
|
||||
'Cite' => array( 'Citěrowańska_pomoc' ),
|
||||
);
|
||||
|
||||
/** Greek (Ελληνικά) */
|
||||
$specialPageAliases['el'] = array(
|
||||
'Cite' => array( 'Παραπομπή' ),
|
||||
);
|
||||
|
||||
/** Esperanto (Esperanto) */
|
||||
$specialPageAliases['eo'] = array(
|
||||
'Cite' => array( 'Citi' ),
|
||||
);
|
||||
|
||||
/** Spanish (español) */
|
||||
$specialPageAliases['es'] = array(
|
||||
'Cite' => array( 'Citar' ),
|
||||
);
|
||||
|
||||
/** Estonian (eesti) */
|
||||
$specialPageAliases['et'] = array(
|
||||
'Cite' => array( 'Tsiteerimine' ),
|
||||
);
|
||||
|
||||
/** Persian (فارسی) */
|
||||
$specialPageAliases['fa'] = array(
|
||||
'Cite' => array( 'یادکرد' ),
|
||||
);
|
||||
|
||||
/** Finnish (suomi) */
|
||||
$specialPageAliases['fi'] = array(
|
||||
'Cite' => array( 'Viittaus' ),
|
||||
);
|
||||
|
||||
/** French (français) */
|
||||
$specialPageAliases['fr'] = array(
|
||||
'Cite' => array( 'Citer' ),
|
||||
);
|
||||
|
||||
/** Franco-Provençal (arpetan) */
|
||||
$specialPageAliases['frp'] = array(
|
||||
'Cite' => array( 'Citar' ),
|
||||
);
|
||||
|
||||
/** Galician (galego) */
|
||||
$specialPageAliases['gl'] = array(
|
||||
'Cite' => array( 'Cita', 'Citar' ),
|
||||
);
|
||||
|
||||
/** Swiss German (Alemannisch) */
|
||||
$specialPageAliases['gsw'] = array(
|
||||
'Cite' => array( 'Zitierhilf' ),
|
||||
);
|
||||
|
||||
/** Hebrew (עברית) */
|
||||
$specialPageAliases['he'] = array(
|
||||
'Cite' => array( 'ציטוט' ),
|
||||
);
|
||||
|
||||
/** Croatian (hrvatski) */
|
||||
$specialPageAliases['hr'] = array(
|
||||
'Cite' => array( 'Citiraj' ),
|
||||
);
|
||||
|
||||
/** Upper Sorbian (hornjoserbsce) */
|
||||
$specialPageAliases['hsb'] = array(
|
||||
'Cite' => array( 'Citowanska_pomoc' ),
|
||||
);
|
||||
|
||||
/** 湘语 (湘语) */
|
||||
$specialPageAliases['hsn'] = array(
|
||||
'Cite' => array( '建脚注' ),
|
||||
);
|
||||
|
||||
/** Haitian (Kreyòl ayisyen) */
|
||||
$specialPageAliases['ht'] = array(
|
||||
'Cite' => array( 'Site' ),
|
||||
);
|
||||
|
||||
/** Hungarian (magyar) */
|
||||
$specialPageAliases['hu'] = array(
|
||||
'Cite' => array( 'Hivatkozás', 'Irodalomjegyzék' ),
|
||||
);
|
||||
|
||||
/** Interlingua (interlingua) */
|
||||
$specialPageAliases['ia'] = array(
|
||||
'Cite' => array( 'Citation' ),
|
||||
);
|
||||
|
||||
/** Indonesian (Bahasa Indonesia) */
|
||||
$specialPageAliases['id'] = array(
|
||||
'Cite' => array( 'Kutip' ),
|
||||
);
|
||||
|
||||
/** Igbo (Igbo) */
|
||||
$specialPageAliases['ig'] = array(
|
||||
'Cite' => array( 'Dépùtà' ),
|
||||
);
|
||||
|
||||
/** Ido (Ido) */
|
||||
$specialPageAliases['io'] = array(
|
||||
'Cite' => array( 'Citar' ),
|
||||
);
|
||||
|
||||
/** Italian (italiano) */
|
||||
$specialPageAliases['it'] = array(
|
||||
'Cite' => array( 'Cita' ),
|
||||
);
|
||||
|
||||
/** Japanese (日本語) */
|
||||
$specialPageAliases['ja'] = array(
|
||||
'Cite' => array( '引用' ),
|
||||
);
|
||||
|
||||
/** Korean (한국어) */
|
||||
$specialPageAliases['ko'] = array(
|
||||
'Cite' => array( '인용' ),
|
||||
);
|
||||
|
||||
/** Colognian (Ripoarisch) */
|
||||
$specialPageAliases['ksh'] = array(
|
||||
'Cite' => array( 'Zitteere' ),
|
||||
);
|
||||
|
||||
/** Cornish (kernowek) */
|
||||
$specialPageAliases['kw'] = array(
|
||||
'Cite' => array( 'Devynna' ),
|
||||
);
|
||||
|
||||
/** Ladino (Ladino) */
|
||||
$specialPageAliases['lad'] = array(
|
||||
'Cite' => array( 'MostrarManaderos' ),
|
||||
);
|
||||
|
||||
/** Luxembourgish (Lëtzebuergesch) */
|
||||
$specialPageAliases['lb'] = array(
|
||||
'Cite' => array( 'Zitéierhellëf' ),
|
||||
);
|
||||
|
||||
/** Literary Chinese (文言) */
|
||||
$specialPageAliases['lzh'] = array(
|
||||
'Cite' => array( '引文' ),
|
||||
);
|
||||
|
||||
/** Macedonian (македонски) */
|
||||
$specialPageAliases['mk'] = array(
|
||||
'Cite' => array( 'Навод' ),
|
||||
);
|
||||
|
||||
/** Malayalam (മലയാളം) */
|
||||
$specialPageAliases['ml'] = array(
|
||||
'Cite' => array( 'അവലംബം' ),
|
||||
);
|
||||
|
||||
/** Marathi (मराठी) */
|
||||
$specialPageAliases['mr'] = array(
|
||||
'Cite' => array( 'संदर्भद्या' ),
|
||||
);
|
||||
|
||||
/** Malay (Bahasa Melayu) */
|
||||
$specialPageAliases['ms'] = array(
|
||||
'Cite' => array( 'Petik' ),
|
||||
);
|
||||
|
||||
/** Maltese (Malti) */
|
||||
$specialPageAliases['mt'] = array(
|
||||
'Cite' => array( 'Iċċita' ),
|
||||
);
|
||||
|
||||
/** Nāhuatl (Nāhuatl) */
|
||||
$specialPageAliases['nah'] = array(
|
||||
'Cite' => array( 'Tlahtoa', 'Citar' ),
|
||||
);
|
||||
|
||||
/** Norwegian Bokmål (norsk bokmål) */
|
||||
$specialPageAliases['nb'] = array(
|
||||
'Cite' => array( 'Siteringshjelp' ),
|
||||
);
|
||||
|
||||
/** Low German (Plattdüütsch) */
|
||||
$specialPageAliases['nds'] = array(
|
||||
'Cite' => array( 'Ziteerhelp' ),
|
||||
);
|
||||
|
||||
/** Low Saxon (Netherlands) (Nedersaksies) */
|
||||
$specialPageAliases['nds-nl'] = array(
|
||||
'Cite' => array( 'Siteerhulpe' ),
|
||||
);
|
||||
|
||||
/** Dutch (Nederlands) */
|
||||
$specialPageAliases['nl'] = array(
|
||||
'Cite' => array( 'Citeren' ),
|
||||
);
|
||||
|
||||
/** Norwegian Nynorsk (norsk nynorsk) */
|
||||
$specialPageAliases['nn'] = array(
|
||||
'Cite' => array( 'Siter' ),
|
||||
);
|
||||
|
||||
/** Occitan (occitan) */
|
||||
$specialPageAliases['oc'] = array(
|
||||
'Cite' => array( 'Citar' ),
|
||||
);
|
||||
|
||||
/** Polish (polski) */
|
||||
$specialPageAliases['pl'] = array(
|
||||
'Cite' => array( 'Cytuj' ),
|
||||
);
|
||||
|
||||
/** Pashto (پښتو) */
|
||||
$specialPageAliases['ps'] = array(
|
||||
'Cite' => array( 'درک' ),
|
||||
);
|
||||
|
||||
/** Portuguese (português) */
|
||||
$specialPageAliases['pt'] = array(
|
||||
'Cite' => array( 'Citar' ),
|
||||
);
|
||||
|
||||
/** Brazilian Portuguese (português do Brasil) */
|
||||
$specialPageAliases['pt-br'] = array(
|
||||
'Cite' => array( 'Citar' ),
|
||||
);
|
||||
|
||||
/** Romanian (română) */
|
||||
$specialPageAliases['ro'] = array(
|
||||
'Cite' => array( 'Citează' ),
|
||||
);
|
||||
|
||||
/** Russian (русский) */
|
||||
$specialPageAliases['ru'] = array(
|
||||
'Cite' => array( 'Цитата' ),
|
||||
);
|
||||
|
||||
/** Sanskrit (संस्कृतम्) */
|
||||
$specialPageAliases['sa'] = array(
|
||||
'Cite' => array( 'उद्धृत' ),
|
||||
);
|
||||
|
||||
/** Sicilian (sicilianu) */
|
||||
$specialPageAliases['scn'] = array(
|
||||
'Cite' => array( 'Cita' ),
|
||||
);
|
||||
|
||||
/** Slovak (slovenčina) */
|
||||
$specialPageAliases['sk'] = array(
|
||||
'Cite' => array( 'Citovať' ),
|
||||
);
|
||||
|
||||
/** Slovenian (slovenščina) */
|
||||
$specialPageAliases['sl'] = array(
|
||||
'Cite' => array( 'Navedi' ),
|
||||
);
|
||||
|
||||
/** Albanian (shqip) */
|
||||
$specialPageAliases['sq'] = array(
|
||||
'Cite' => array( 'Citim' ),
|
||||
);
|
||||
|
||||
/** Swedish (svenska) */
|
||||
$specialPageAliases['sv'] = array(
|
||||
'Cite' => array( 'Citera' ),
|
||||
);
|
||||
|
||||
/** Swahili (Kiswahili) */
|
||||
$specialPageAliases['sw'] = array(
|
||||
'Cite' => array( 'Taja', 'Hakikisha' ),
|
||||
);
|
||||
|
||||
/** Tetum (tetun) */
|
||||
$specialPageAliases['tet'] = array(
|
||||
'Cite' => array( 'Sita' ),
|
||||
);
|
||||
|
||||
/** Thai (ไทย) */
|
||||
$specialPageAliases['th'] = array(
|
||||
'Cite' => array( 'อ้างอิง' ),
|
||||
);
|
||||
|
||||
/** Tagalog (Tagalog) */
|
||||
$specialPageAliases['tl'] = array(
|
||||
'Cite' => array( 'Sipiin' ),
|
||||
);
|
||||
|
||||
/** Turkish (Türkçe) */
|
||||
$specialPageAliases['tr'] = array(
|
||||
'Cite' => array( 'KaynakGöster' ),
|
||||
);
|
||||
|
||||
/** Urdu (اردو) */
|
||||
$specialPageAliases['ur'] = array(
|
||||
'Cite' => array( 'حوالہ' ),
|
||||
);
|
||||
|
||||
/** vèneto (vèneto) */
|
||||
$specialPageAliases['vec'] = array(
|
||||
'Cite' => array( 'Cita' ),
|
||||
);
|
||||
|
||||
/** Vietnamese (Tiếng Việt) */
|
||||
$specialPageAliases['vi'] = array(
|
||||
'Cite' => array( 'Ghi_chú' ),
|
||||
);
|
||||
|
||||
/** Yiddish (ייִדיש) */
|
||||
$specialPageAliases['yi'] = array(
|
||||
'Cite' => array( 'ציטירן' ),
|
||||
);
|
||||
|
||||
/** Cantonese (粵語) */
|
||||
$specialPageAliases['yue'] = array(
|
||||
'Cite' => array( '引用' ),
|
||||
);
|
||||
|
||||
/** Simplified Chinese (中文(简体)) */
|
||||
$specialPageAliases['zh-hans'] = array(
|
||||
'Cite' => array( '引用' ),
|
||||
);
|
||||
|
||||
/** Traditional Chinese (中文(繁體)) */
|
||||
$specialPageAliases['zh-hant'] = array(
|
||||
'Cite' => array( '引用' ),
|
||||
);
|
@@ -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( 'wfJsonI18nShim321e6a9153cfc828' ) ) {
|
||||
function wfJsonI18nShim321e6a9153cfc828( $cache, $code, &$cachedData ) {
|
||||
$codeSequence = array_merge( array( $code ), $cachedData['fallbackSequence'] );
|
||||
foreach ( $codeSequence as $csCode ) {
|
||||
$fileName = dirname( __FILE__ ) . "/i18n/special/$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'][] = 'wfJsonI18nShim321e6a9153cfc828';
|
||||
}
|
@@ -1,7 +0,0 @@
|
||||
<?php
|
||||
|
||||
trigger_error(
|
||||
'Special:Cite was moved to a separate CiteThisPage extension, ' .
|
||||
'see <https://www.mediawiki.org/wiki/Extension:CiteThisPage> for information on how to install it',
|
||||
E_USER_WARNING
|
||||
);
|
@@ -1,180 +0,0 @@
|
||||
<?php
|
||||
|
||||
class SpecialCite extends SpecialPage {
|
||||
function __construct() {
|
||||
parent::__construct( 'Cite' );
|
||||
}
|
||||
|
||||
function execute( $par ) {
|
||||
global $wgUseTidy;
|
||||
|
||||
// Having tidy on causes whitespace and <pre> tags to
|
||||
// be generated around the output of the CiteOutput
|
||||
// class TODO FIXME.
|
||||
$wgUseTidy = false;
|
||||
|
||||
$this->setHeaders();
|
||||
$this->outputHeader();
|
||||
|
||||
$page = $par !== null ? $par : $this->getRequest()->getText( 'page' );
|
||||
$title = Title::newFromText( $page );
|
||||
|
||||
$cform = new CiteForm( $title );
|
||||
$cform->execute();
|
||||
|
||||
if ( $title && $title->exists() ) {
|
||||
$id = $this->getRequest()->getInt( 'id' );
|
||||
$cout = new CiteOutput( $title, $id );
|
||||
$cout->execute();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class CiteForm {
|
||||
/**
|
||||
* @var Title
|
||||
*/
|
||||
var $mTitle;
|
||||
|
||||
function __construct( &$title ) {
|
||||
$this->mTitle =& $title;
|
||||
}
|
||||
|
||||
function execute() {
|
||||
global $wgOut, $wgScript;
|
||||
|
||||
$wgOut->addHTML(
|
||||
Xml::openElement( 'form',
|
||||
array(
|
||||
'id' => 'specialcite',
|
||||
'method' => 'get',
|
||||
'action' => $wgScript
|
||||
) ) .
|
||||
Html::hidden( 'title', SpecialPage::getTitleFor( 'Cite' )->getPrefixedDBkey() ) .
|
||||
Xml::openElement( 'label' ) .
|
||||
wfMessage( 'cite_page' )->escaped() . ' ' .
|
||||
Xml::element( 'input',
|
||||
array(
|
||||
'type' => 'text',
|
||||
'size' => 30,
|
||||
'name' => 'page',
|
||||
'value' => is_object( $this->mTitle ) ? $this->mTitle->getPrefixedText() : ''
|
||||
),
|
||||
''
|
||||
) .
|
||||
' ' .
|
||||
Xml::element( 'input',
|
||||
array(
|
||||
'type' => 'submit',
|
||||
'value' => wfMessage( 'cite_submit' )->escaped()
|
||||
),
|
||||
''
|
||||
) .
|
||||
Xml::closeElement( 'label' ) .
|
||||
Xml::closeElement( 'form' )
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class CiteOutput {
|
||||
/**
|
||||
* @var Title
|
||||
*/
|
||||
var $mTitle;
|
||||
|
||||
/**
|
||||
* @var Article
|
||||
*/
|
||||
var $mArticle;
|
||||
|
||||
var $mId;
|
||||
|
||||
/**
|
||||
* @var Parser
|
||||
*/
|
||||
var $mParser;
|
||||
|
||||
/**
|
||||
* @var ParserOptions
|
||||
*/
|
||||
var $mParserOptions;
|
||||
|
||||
var $mSpTitle;
|
||||
|
||||
function __construct( $title, $id ) {
|
||||
global $wgHooks, $wgParser;
|
||||
|
||||
$this->mTitle = $title;
|
||||
$this->mArticle = new Article( $title );
|
||||
$this->mId = $id;
|
||||
|
||||
$wgHooks['ParserGetVariableValueVarCache'][] = array( $this, 'varCache' );
|
||||
|
||||
$this->genParserOptions();
|
||||
$this->genParser();
|
||||
|
||||
$wgParser->setHook( 'citation', array( $this, 'CiteParse' ) );
|
||||
}
|
||||
|
||||
function execute() {
|
||||
global $wgOut, $wgParser, $wgHooks;
|
||||
|
||||
$wgHooks['ParserGetVariableValueTs'][] = array( $this, 'timestamp' );
|
||||
|
||||
$msg = wfMessage( 'cite_text' )->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"
|
||||
# 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" );
|
||||
}
|
||||
}
|
||||
$ret = $wgParser->parse( $msg, $this->mTitle, $this->mParserOptions, false, true, $this->getRevId() );
|
||||
$wgOut->addModules( 'ext.specialcite' );
|
||||
$wgOut->addHTML( $ret->getText() );
|
||||
}
|
||||
|
||||
function genParserOptions() {
|
||||
global $wgUser;
|
||||
$this->mParserOptions = ParserOptions::newFromUser( $wgUser );
|
||||
$this->mParserOptions->setDateFormat( MW_DATE_DEFAULT );
|
||||
$this->mParserOptions->setEditSection( false );
|
||||
}
|
||||
|
||||
function genParser() {
|
||||
$this->mParser = new Parser;
|
||||
$this->mSpTitle = SpecialPage::getTitleFor( 'Cite' );
|
||||
}
|
||||
|
||||
function CiteParse( $in, $argv ) {
|
||||
$ret = $this->mParser->parse( $in, $this->mSpTitle, $this->mParserOptions, false );
|
||||
|
||||
return $ret->getText();
|
||||
}
|
||||
|
||||
function varCache() {
|
||||
return false;
|
||||
}
|
||||
|
||||
function timestamp( &$parser, &$ts ) {
|
||||
if ( isset( $parser->mTagHooks['citation'] ) ) {
|
||||
$ts = wfTimestamp( TS_UNIX, $this->mArticle->getTimestamp() );
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
function getRevId() {
|
||||
if ( $this->mId ) {
|
||||
return $this->mId;
|
||||
} else {
|
||||
return $this->mTitle->getLatestRevID();
|
||||
}
|
||||
}
|
||||
}
|
@@ -1,603 +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" srcset="http://example.com/images/thumb/3/3a/Foobar.jpg/180px-Foobar.jpg 1.5x, http://example.com/images/thumb/3/3a/Foobar.jpg/240px-Foobar.jpg 2x" /></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
|
||||
Ref with content followed by blank ref
|
||||
!! input
|
||||
<ref name="blank">content</ref>
|
||||
|
||||
<ref name="blank"/>
|
||||
|
||||
<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
|
||||
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 class="error mw-ext-cite-error" lang="en" dir="ltr">Cite error: Invalid <code><ref></code> tag; name "blank" defined multiple times with different content</span></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 class="error mw-ext-cite-error" lang="en" dir="ltr">Cite error: Invalid <code><ref></code> tag; name "blank" defined multiple times with different content</span></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><span class="error mw-ext-cite-error" lang="en" dir="ltr">Cite error: Invalid <code><ref></code> tag;
|
||||
name cannot be a simple integer. Use a descriptive title</span>
|
||||
</p><p><sup id="cite_ref-1" class="reference"><a href="#cite_note-1">[1]</a></sup>
|
||||
</p><p><span class="error mw-ext-cite-error" lang="en" dir="ltr">Cite error: The opening <code><ref></code> tag is malformed or has a bad name</span>
|
||||
</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><span class="error mw-ext-cite-error" lang="en" dir="ltr">Cite error: Invalid <code><references></code> tag;
|
||||
parameter "group" is allowed only.
|
||||
Use <code><references /></code>, or <code><references group="..." /></code></span>
|
||||
</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-2"><span class="mw-cite-backlink"><a href="#cite_ref-bar_2-0">↑</a></span> <span class="error mw-ext-cite-error" lang="en" dir="ltr">Cite error: Invalid <code><ref></code> tag;
|
||||
no text was provided for refs named <code>bar</code></span></li>
|
||||
<li id="cite_note-blankwithnoreference-3"><span class="mw-cite-backlink"><a href="#cite_ref-blankwithnoreference_3-0">↑</a></span> <span class="error mw-ext-cite-error" lang="en" dir="ltr">Cite error: Invalid <code><ref></code> tag;
|
||||
no text was provided for refs named <code>blankwithnoreference</code></span></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-1"><span class="mw-cite-backlink"><a href="#cite_ref-foo_1-0">↑</a></span> <span class="error mw-ext-cite-error" lang="en" dir="ltr">Cite error: Invalid <code><ref></code> tag;
|
||||
no text was provided for refs named <code>foo</code></span></li>
|
||||
</ol>
|
||||
<p><span class="error mw-ext-cite-error" lang="en" dir="ltr">Cite error: <code><ref></code> tag with name "unused" defined in <code><references></code> is not used in prior text.</span><br />
|
||||
<span class="error mw-ext-cite-error" lang="en" dir="ltr">Cite error: <code><ref></code> tag in <code><references></code> has conflicting group attribute "1".</span><br />
|
||||
<span class="error mw-ext-cite-error" lang="en" dir="ltr">Cite error: <code><ref></code> tag defined in <code><references></code> has no name attribute.</span>
|
||||
</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 with number names in Klingon
|
||||
!! 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
|
||||
|
||||
!! test
|
||||
<ref> with no name and no content.
|
||||
!! input
|
||||
Bla.<ref></ref>
|
||||
!! result
|
||||
<p>Bla.<span class="error mw-ext-cite-error" lang="en" dir="ltr">Cite error: Invalid <code><ref></code> tag;
|
||||
refs with no name must have content</span>
|
||||
</p>
|
||||
!! end
|
||||
|
||||
!! test
|
||||
<ref> with an empty-string name parameter and no content.
|
||||
!! input
|
||||
Bla.<ref name=""></ref>
|
||||
!! result
|
||||
<p>Bla.<span class="error mw-ext-cite-error" lang="en" dir="ltr">Cite error: Invalid <code><ref></code> tag;
|
||||
refs with no name must have content</span>
|
||||
</p>
|
||||
!! end
|
||||
|
||||
!! test
|
||||
<ref> with a non-empty name parameter and no content.
|
||||
!! input
|
||||
Bla.<ref name="void"></ref>
|
||||
!! result
|
||||
Bla.<sup id="cite_ref-void_1-0" class="reference"><a href="#cite_note-void-1">[1]</a></sup><ol class="references">
|
||||
<li id="cite_note-void-1"><span class="mw-cite-backlink"><a href="#cite_ref-void_1-0">↑</a></span> <span class="error mw-ext-cite-error" lang="en" dir="ltr">Cite error: Invalid <code><ref></code> tag;
|
||||
no text was provided for refs named <code>void</code></span></li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
!! test
|
||||
<ref>s with the follow parameter
|
||||
!! input
|
||||
Page one.<ref name="beginning">First page footnote text.</ref>
|
||||
|
||||
Page two.<ref follow="beginning">Second page footnote text.</ref>
|
||||
|
||||
== References ==
|
||||
<references />
|
||||
!! result
|
||||
<p>Page one.<sup id="cite_ref-beginning_1-0" class="reference"><a href="#cite_note-beginning-1">[1]</a></sup>
|
||||
</p><p>Page two.
|
||||
</p>
|
||||
<h2><span class="mw-headline" id="References">References</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/index.php?title=Parser_test&action=edit&section=1" title="Edit section: References">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
|
||||
<ol class="references">
|
||||
<li id="cite_note-beginning-1"><span class="mw-cite-backlink"><a href="#cite_ref-beginning_1-0">↑</a></span> <span class="reference-text">First page footnote text. Second page footnote text.</span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
!! test
|
||||
<ref> with both name and follow parameters - invalid
|
||||
!! input
|
||||
Page one.<ref name="the-name" follow="the-name">This ref is invalid.</ref>
|
||||
<references />
|
||||
!! result
|
||||
<p>Page one.<span class="error mw-ext-cite-error" lang="en" dir="ltr">Cite error: Invalid <code><ref></code> tag;
|
||||
invalid names, e.g. too many</span>
|
||||
</p>
|
||||
!! end
|
||||
|
||||
!! test
|
||||
Multiple definition (outside <references/>)
|
||||
!! input
|
||||
<ref name=a>abc</ref>
|
||||
<ref name=a>def</ref>
|
||||
<references />
|
||||
!! result
|
||||
<p><sup id="cite_ref-a_1-0" class="reference"><a href="#cite_note-a-1">[1]</a></sup>
|
||||
<sup id="cite_ref-a_1-1" class="reference"><a href="#cite_note-a-1">[1]</a></sup>
|
||||
</p>
|
||||
<ol class="references">
|
||||
<li id="cite_note-a-1"><span class="mw-cite-backlink">↑ <sup><a href="#cite_ref-a_1-0">1.0</a></sup> <sup><a href="#cite_ref-a_1-1">1.1</a></sup></span> <span class="reference-text">abc <span class="error mw-ext-cite-error" lang="en" dir="ltr">Cite error: Invalid <code><ref></code> tag; name "a" defined multiple times with different content</span></span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
!! test
|
||||
Multiple definition (inside <references/>)
|
||||
!! input
|
||||
<ref name=a />
|
||||
<references>
|
||||
<ref name=a>abc</ref>
|
||||
<ref name=a>def</ref>
|
||||
</references>
|
||||
!! result
|
||||
<p><sup id="cite_ref-a_1-0" class="reference"><a href="#cite_note-a-1">[1]</a></sup>
|
||||
</p>
|
||||
<ol class="references">
|
||||
<li id="cite_note-a-1"><span class="mw-cite-backlink"><a href="#cite_ref-a_1-0">↑</a></span> <span class="reference-text">abc <span class="error mw-ext-cite-error" lang="en" dir="ltr">Cite error: Invalid <code><ref></code> tag; name "a" defined multiple times with different content</span></span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
!! test
|
||||
Multiple definition (mixed outside/inside)
|
||||
!! input
|
||||
<ref name=a>abc</ref>
|
||||
<references>
|
||||
<ref name=a>def</ref>
|
||||
</references>
|
||||
!! result
|
||||
<p><sup id="cite_ref-a_1-0" class="reference"><a href="#cite_note-a-1">[1]</a></sup>
|
||||
</p>
|
||||
<ol class="references">
|
||||
<li id="cite_note-a-1"><span class="mw-cite-backlink"><a href="#cite_ref-a_1-0">↑</a></span> <span class="reference-text">abc <span class="error mw-ext-cite-error" lang="en" dir="ltr">Cite error: Invalid <code><ref></code> tag; name "a" defined multiple times with different content</span></span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
||||
|
||||
!! test
|
||||
Multiple definition (inside {{#tag:references}})
|
||||
!! input
|
||||
<ref name=a />
|
||||
{{#tag:references|
|
||||
<ref name=a>abc</ref>
|
||||
<ref name=a>def</ref>
|
||||
}}
|
||||
!! result
|
||||
<p><sup id="cite_ref-a_1-0" class="reference"><a href="#cite_note-a-1">[1]</a></sup>
|
||||
</p>
|
||||
<ol class="references">
|
||||
<li id="cite_note-a-1"><span class="mw-cite-backlink"><a href="#cite_ref-a_1-0">↑</a></span> <span class="reference-text">abc <span class="error mw-ext-cite-error" lang="en" dir="ltr">Cite error: Invalid <code><ref></code> tag; name "a" defined multiple times with different content</span></span>
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
!! end
|
@@ -1,12 +0,0 @@
|
||||
{
|
||||
"require-dev": {
|
||||
"jakub-onderka/php-parallel-lint": "0.9.2",
|
||||
"mediawiki/mediawiki-codesniffer": "0.5.1"
|
||||
},
|
||||
"scripts": {
|
||||
"test": [
|
||||
"parallel-lint . --exclude node_modules --exclude vendor",
|
||||
"phpcs -p -s"
|
||||
]
|
||||
}
|
||||
}
|
@@ -1,189 +0,0 @@
|
||||
{
|
||||
"name": "Cite",
|
||||
"author": [
|
||||
"Ævar Arnfjörð Bjarmason",
|
||||
"Andrew Garrett",
|
||||
"Brion Vibber",
|
||||
"Ed Sanders",
|
||||
"Marius Hoch",
|
||||
"Steve Sanbeg",
|
||||
"Trevor Parscal",
|
||||
"..."
|
||||
],
|
||||
"url": "https://www.mediawiki.org/wiki/Extension:Cite",
|
||||
"descriptionmsg": "cite-desc",
|
||||
"license-name": "GPL-2.0+",
|
||||
"type": "parserhook",
|
||||
"MessagesDirs": {
|
||||
"cite": "i18n",
|
||||
"ve-cite": "modules/ve-cite/i18n"
|
||||
},
|
||||
"APIPropModules": {
|
||||
"references": {
|
||||
"class": "ApiQueryReferences"
|
||||
}
|
||||
},
|
||||
"Hooks": {
|
||||
"ParserFirstCallInit": [
|
||||
"Cite::setHooks"
|
||||
],
|
||||
"ContentHandlerDefaultModelFor": [
|
||||
"CiteHooks::onContentHandlerDefaultModelFor"
|
||||
],
|
||||
"ResourceLoaderTestModules": [
|
||||
"CiteHooks::onResourceLoaderTestModules"
|
||||
],
|
||||
"LinksUpdate": [
|
||||
"CiteHooks::onLinksUpdate"
|
||||
],
|
||||
"LinksUpdateComplete": [
|
||||
"CiteHooks::onLinksUpdateComplete"
|
||||
]
|
||||
},
|
||||
"ResourceModules": {
|
||||
"ext.cite.styles": {
|
||||
"styles": {
|
||||
"ext.cite.styles.css": {},
|
||||
"ext.cite.print.css": {
|
||||
"media": "print"
|
||||
}
|
||||
},
|
||||
"position": "bottom"
|
||||
},
|
||||
"ext.cite.a11y": {
|
||||
"scripts": "ext.cite.a11y.js",
|
||||
"styles": "ext.cite.a11y.css",
|
||||
"messages": [
|
||||
"cite_references_link_accessibility_label",
|
||||
"cite_references_link_many_accessibility_label"
|
||||
],
|
||||
"position": "bottom"
|
||||
},
|
||||
"ext.cite.style": {
|
||||
"class": "CiteCSSFileModule",
|
||||
"styles": "ext.cite.style.css",
|
||||
"position": "top",
|
||||
"targets": [
|
||||
"desktop",
|
||||
"mobile"
|
||||
]
|
||||
},
|
||||
"ext.cite.visualEditor.core": {
|
||||
"scripts": [
|
||||
"ve-cite/ve.dm.MWReferenceModel.js",
|
||||
"ve-cite/ve.dm.MWReferencesListNode.js",
|
||||
"ve-cite/ve.dm.MWReferenceNode.js",
|
||||
"ve-cite/ve.ce.MWReferencesListNode.js",
|
||||
"ve-cite/ve.ce.MWReferenceNode.js",
|
||||
"ve-cite/ve.ui.MWReferencesListCommand.js"
|
||||
],
|
||||
"styles": [
|
||||
"ve-cite/ve.ce.MWReferencesListNode.css",
|
||||
"ve-cite/ve.ce.MWReferenceNode.css"
|
||||
],
|
||||
"dependencies": [
|
||||
"ext.visualEditor.mwcore"
|
||||
],
|
||||
"messages": [
|
||||
"cite-ve-referenceslist-isempty",
|
||||
"cite-ve-referenceslist-isempty-default",
|
||||
"cite-ve-referenceslist-missingref"
|
||||
],
|
||||
"targets": [
|
||||
"desktop",
|
||||
"mobile"
|
||||
]
|
||||
},
|
||||
"ext.cite.visualEditor.data": {
|
||||
"class": "CiteDataModule"
|
||||
},
|
||||
"ext.cite.visualEditor": {
|
||||
"scripts": [
|
||||
"ve-cite/ve.ui.MWReferenceGroupInputWidget.js",
|
||||
"ve-cite/ve.ui.MWReferenceSearchWidget.js",
|
||||
"ve-cite/ve.ui.MWReferenceResultWidget.js",
|
||||
"ve-cite/ve.ui.MWUseExistingReferenceCommand.js",
|
||||
"ve-cite/ve.ui.MWCitationDialog.js",
|
||||
"ve-cite/ve.ui.MWReferencesListDialog.js",
|
||||
"ve-cite/ve.ui.MWReferenceDialog.js",
|
||||
"ve-cite/ve.ui.MWReferenceDialogTool.js",
|
||||
"ve-cite/ve.ui.MWCitationDialogTool.js",
|
||||
"ve-cite/ve.ui.MWReferenceContextItem.js",
|
||||
"ve-cite/ve.ui.MWReferencesListContextItem.js",
|
||||
"ve-cite/ve.ui.MWCitationContextItem.js",
|
||||
"ve-cite/ve.ui.MWCitationAction.js",
|
||||
"ve-cite/ve.ui.MWReference.init.js"
|
||||
],
|
||||
"styles": [
|
||||
"ve-cite/ve.ui.MWReferenceContextItem.css",
|
||||
"ve-cite/ve.ui.MWReferenceGroupInputWidget.css",
|
||||
"ve-cite/ve.ui.MWReferenceIcons.css",
|
||||
"ve-cite/ve.ui.MWReferenceResultWidget.css",
|
||||
"ve-cite/ve.ui.MWReferenceSearchWidget.css"
|
||||
],
|
||||
"dependencies": [
|
||||
"ext.cite.visualEditor.core",
|
||||
"ext.cite.visualEditor.data",
|
||||
"ext.cite.style",
|
||||
"ext.visualEditor.mwtransclusion",
|
||||
"ext.visualEditor.mediawiki"
|
||||
],
|
||||
"messages": [
|
||||
"cite-ve-dialog-reference-editing-reused",
|
||||
"cite-ve-dialog-reference-options-group-label",
|
||||
"cite-ve-dialog-reference-options-group-placeholder",
|
||||
"cite-ve-dialog-reference-options-name-label",
|
||||
"cite-ve-dialog-reference-options-section",
|
||||
"cite-ve-dialog-reference-title",
|
||||
"cite-ve-dialog-reference-useexisting-full-label",
|
||||
"cite-ve-dialog-reference-useexisting-label",
|
||||
"cite-ve-dialog-reference-useexisting-tool",
|
||||
"cite-ve-dialog-referenceslist-contextitem-description-general",
|
||||
"cite-ve-dialog-referenceslist-contextitem-description-named",
|
||||
"cite-ve-dialog-referenceslist-title",
|
||||
"cite-ve-dialogbutton-citation-educationpopup-title",
|
||||
"cite-ve-dialogbutton-citation-educationpopup-text",
|
||||
"cite-ve-dialogbutton-reference-full-label",
|
||||
"cite-ve-dialogbutton-reference-tooltip",
|
||||
"cite-ve-dialogbutton-reference-title",
|
||||
"cite-ve-dialogbutton-referenceslist-tooltip",
|
||||
"cite-ve-reference-input-placeholder",
|
||||
"cite-ve-toolbar-group-label"
|
||||
],
|
||||
"targets": [
|
||||
"desktop",
|
||||
"mobile"
|
||||
]
|
||||
}
|
||||
},
|
||||
"ResourceFileModulePaths": {
|
||||
"localBasePath": "modules",
|
||||
"remoteExtPath": "Cite/modules"
|
||||
},
|
||||
"VisualEditorPluginModules": [
|
||||
"ext.cite.visualEditor"
|
||||
],
|
||||
"ConfigRegistry": {
|
||||
"cite": "GlobalVarConfig::newInstance"
|
||||
},
|
||||
"config": {
|
||||
"AllowCiteGroups": true,
|
||||
"CiteCacheReferences": false,
|
||||
"CiteStoreReferencesData": false,
|
||||
"CiteCacheReferencesDataOnParse": false
|
||||
},
|
||||
"AutoloadClasses": {
|
||||
"ApiQueryReferences": "ApiQueryReferences.php",
|
||||
"Cite": "Cite_body.php",
|
||||
"CiteHooks": "CiteHooks.php",
|
||||
"CiteDataModule": "CiteDataModule.php",
|
||||
"CiteCSSFileModule": "CiteCSSFileModule.php"
|
||||
},
|
||||
"ParserTestFiles": [
|
||||
"citeParserTests.txt"
|
||||
],
|
||||
"TrackingCategories": [
|
||||
"cite-tracking-category-cite-error"
|
||||
],
|
||||
"manifest_version": 1
|
||||
}
|
@@ -1,8 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Si Gam Acèh"
|
||||
]
|
||||
},
|
||||
"cite_error": "Salah kutip: $1"
|
||||
}
|
@@ -1,8 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"SmartNart12"
|
||||
]
|
||||
},
|
||||
"cite_error": "Цитэ къуанч: $1"
|
||||
}
|
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Naudefj",
|
||||
"Arnobarnard"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Maak <nowiki><ref[ name=id]></nowiki> en <nowiki><references/></nowiki> etikette beskikbaar vir sitasie.",
|
||||
"cite_error": "Verwysingfout: $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,25 +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_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,8 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Angpradesh"
|
||||
]
|
||||
},
|
||||
"cite_error": "सन्दर्भ त्रुटि: $1"
|
||||
}
|
@@ -1,40 +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_duplicate_key": "وسم <code><ref></code> غير صالح؛ الاسم \"$1\" معرف أكثر من مرة بمحتويات مختلفة.",
|
||||
"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_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-tracking-category-cite-error": "صفحات بأخطاء في المراجع",
|
||||
"cite-tracking-category-cite-error-desc": "الصفحات في هذا التصنيف بها أخطاء في استخدام وسوم المراجع.",
|
||||
"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": "تعدى إلى الأعلى ل:",
|
||||
"cite_section_preview_references": "معاينة المراجع",
|
||||
"cite_warning": "تحذير استشهاد: $1",
|
||||
"cite_warning_sectionpreview_no_text": "لا يمكن معاينة الوسم <code><ref></code> الذي يحمل اسم <code>$1</code> لأنه معرف خارج القسم الحالي أو غير معرف على الإطلاق."
|
||||
}
|
@@ -1,8 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Basharh"
|
||||
]
|
||||
},
|
||||
"cite_error": "ܦܘܕܐ ܒܡܣܗܕܢܘܬܐ: $1"
|
||||
}
|
@@ -1,8 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Oldstoneage"
|
||||
]
|
||||
},
|
||||
"cite_error": "غلطة فل قوالات المنسوبة: $1"
|
||||
}
|
@@ -1,22 +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_group_refs_without_references": "<code><ref></code> فى تاجز موجوده لمجموعه اسمها \"$1\", بس مافيش مقابلها تاجز <code><references group=\"$1\"/></code> اتلقت",
|
||||
"cite_references_link_many_format_backlink_labels": "أ ب ت ث ج ح خ د ذ ر ز س ش ص ض ط ظ ع غ ف ق ك ل م ن ه و ى أأ أب أت أث أج أح أخ أد أذ أر أز أس أش أص أض أط أظ أع أغ أف أق أك أل أم أن أه أو أى بأ بب بت بث بج بح بخ بد بذ بر بز بس بش بص بض بط بظ بع بغ بف بق بك بل بم بن به بو بى تأ تب تت تث تج تح تخ تد تذ تر تز تس تش تص تض تط تظ تع تغ تف تق تك تل تم تن ته تو تى ثأ ثب ثت ثث ثج ثح ثخ ثد ثذ ثر ثز ثس ثش ثص ثض ثط ثظ ثع ثغ ثف ثق ثك ثل ثم ثن ثه ثو ثى جأ جب جت جث جج جح جخ جد جذ جر جز جس جش جص جض جط جظ جع جغ جف جق جك جل جم جن جه جو جى حأ حب حت حث حج حح حخ حد حذ حر حز حس حش حص حض حط حظ حع حغ حف حق حك حل حم حن حه حو حى خأ خب خت خث خج خح خخ خد خذ خر خز خس خش خص خض خط خظ خع خغ خف خق خك خل خم خن خه خو خى دأ دب دت دث دج دح دخ دد دذ در دز دس دش دص دض دط دظ دع دغ دف دق دك دل دم دن ده دو دى ذأ ذب ذت ذث ذج ذح ذخ ذد ذذ ذر ذز ذس ذش ذص ذض ذط ذظ ذع ذغ ذف ذق ذك ذل ذم ذن ذه ذو ذى رأ رب رت رث رج رح رخ رد رذ رر رز رس رش رص رض رط رظ رع رغ رف رق رك رل رم رن ره رو رى زأ زب زت زث زج زح زخ زد زذ زر زز زس زش زص زض زط زظ زع زغ زف زق زك زل زم زن زه زو زى سأ سب ست سث سج سح سخ سد سذ سر سز سس سش سص سض سط سظ سع سغ سف سق سك سل سم سن سه سو سى شأ شب شت شث شج شح شخ شد شذ شر شز شس شش شص شض شط شظ شع شغ شف شق شك شل شم شن شه شو شى صأ صب صت صث صج صح صخ صد صذ صر صز صس صش صص صض صط صظ صع صغ صف صق صك صل صم صن صه صو صى ضأ ضب ضت ضث ضج ضح ضخ ضد ضذ ضر ضز ضس ضش ضص ضض ضط ضظ ضع ضغ ضف ضق ضك ضل ضم ضن ضه ضو ضى طأ طب طت طث طج طح طخ طد طذ طر طز طس طش طص طض طط طظ طع طغ طف طق طك طل طم طن طه طو طى ظأ ظب ظت ظث ظج ظح ظخ ظد ظذ ظر ظز ظس ظش ظص ظض ظط ظظ ظع ظغ ظف ظق ظك ظل ظم ظن ظه ظو ظى عأ عب عت عث عج عح عخ عد عذ عر عز عس عش عص عض عط عظ عع عغ عف عق عك عل عم عن عه عو عى غأ غب غت غث غج غح غخ غد غذ غر غز غس غش غص غض غط غظ غع غغ غف غق غك غل غم غن غه غو غى فأ فب فت فث فج فح فخ فد فذ فر فز فس فش فص فض فط فظ فع فغ فف فق فك فل فم فن فه فو فى قأ قب قت قث قج قح قخ قد قذ قر قز قس قش قص قض قط قظ قع قغ قف قق قك قل قم قن قه قو قى كأ كب كت كث كج كح كخ كد كذ كر كز كس كش كص كض كط كظ كع كغ كف كق كك كل كم كن كه كو كى لأ لب لت لث لج لح لخ لد لذ لر لز لس لش لص لض لط لظ لع لغ لف لق لك لل لم لن له لو لى مأ مب مت مث مج مح مخ مد مذ مر مز مس مش مص مض مط مظ مع مغ مف مق مك مل مم من مه مو مى نأ نب نت نث نج نح نخ ند نذ نر نز نس نش نص نض نط نظ نع نغ نف نق نك نل نم نن نه نو نى هأ هب هت هث هج هح هخ هد هذ هر هز هس هش هص هض هط هظ هع هغ هف هق هك هل هم هن هه هو هى وأ وب وت وث وج وح وخ ود وذ ور وز وس وش وص وض وط وظ وع وغ وف وق وك ول وم ون وه وو وى يأ يب يت يث يج يح يخ يد يذ ير يز يس يش يص يض يط يظ يع يغ يف يق يك يل يم ين يه يو يى"
|
||||
}
|
@@ -1,30 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Bishnu Saikia",
|
||||
"Gitartha.bordoloi",
|
||||
"Reedy",
|
||||
"Dibya Dutta"
|
||||
]
|
||||
},
|
||||
"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_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> টেগৰ কোনো সমল নাই।",
|
||||
"cite_references_link_accessibility_label": "যাওক",
|
||||
"cite_references_link_many_accessibility_label": "ইয়ালৈ যাওক:"
|
||||
}
|
@@ -1,36 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Esbardu",
|
||||
"Xuacu"
|
||||
]
|
||||
},
|
||||
"apihelp-query+references-description": "Devolver una representación de datos de les referencies asociaes coles páxines indicaes.",
|
||||
"apihelp-query+references-example-1": "Referencies asociaes con <kbd>Albert Einstein</kbd>.",
|
||||
"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": "La etiqueta d'apertura <code><ref></code> ta mal formada o tien un mal 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_duplicate_key": "La etiqueta <code><ref></code> ye inválida; el nome «$1» ta definíu delles vegaes con distintu 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-tracking-category-cite-error": "Páxines con errores de referencies",
|
||||
"cite-tracking-category-cite-error-desc": "Les páxines d'esta categoría tienen errores nel usu de les etiquetes de referencies.",
|
||||
"cite_references_link_accessibility_label": "Saltar arriba",
|
||||
"cite_references_link_many_accessibility_label": "Saltar a:",
|
||||
"cite_section_preview_references": "Vista previa de les referencies",
|
||||
"cite_warning": "Alvertencia de cita: $1",
|
||||
"cite_warning_sectionpreview_no_text": "La etiqueta <code><ref></code> con nome <code>$1</code> nun puede entevese porque ta definida fora de la sección actual o nun ta definida n'absoluto."
|
||||
}
|
@@ -1,8 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Gazimagomedov"
|
||||
]
|
||||
},
|
||||
"cite_error": "Цитированиялъул гъалатӀ: $1"
|
||||
}
|
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"1AnuraagPandey"
|
||||
]
|
||||
},
|
||||
"cite_error": "सन्दर्भ त्रुटि: $1",
|
||||
"cite_references_link_accessibility_label": "ऊपर जावा जाए",
|
||||
"cite_references_link_many_accessibility_label": "इस तक ऊपर जायें:"
|
||||
}
|
@@ -1,17 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Vago",
|
||||
"Wertuose",
|
||||
"Serkanland"
|
||||
]
|
||||
},
|
||||
"cite_error": "Sitat səhvi: $1",
|
||||
"cite-tracking-category-cite-error": "İstinad xətası olan səhifələr",
|
||||
"cite_reference_link_key_with_num": "$1_$2",
|
||||
"cite_reference_link_prefix": "sitat_istinad-",
|
||||
"cite_references_link_prefix": "sitat_qeyd-",
|
||||
"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,38 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Assele",
|
||||
"Вильданова Гюзель",
|
||||
"Янмурза Баки",
|
||||
"Лилиә"
|
||||
]
|
||||
},
|
||||
"apihelp-query+references-description": "Был бит менән бәйле һылтанмаларҙың мәғлүмәттәрен сағылдыра.",
|
||||
"apihelp-query+references-example-1": "<kbd>Albert Einstein</kbd> менән бәйле һылтанмалар.",
|
||||
"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> билдәһе- дөрөҫ түгел йәки мәғәнәһеҙ исем йөрөтә.",
|
||||
"cite_error_ref_too_many_keys": "<code><ref></code> билдәһе дөрөҫ түгел;\nисемдәр дөрөҫ түгел, бәлки, бигерәк күп",
|
||||
"cite_error_ref_no_input": "<code><ref></code> билдәһе дөрөҫ түгел;\nисемһеҙ төшөрмәнең эстәлеге булырға тейеш.",
|
||||
"cite_error_references_duplicate_key": "<code><ref></code> тег дөрөҫ түгел: «$1» исеме бер нисә тапҡыр, икенсе йөкмәткегә билдәләнгән",
|
||||
"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_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> билдәһенең эстәлеге юҡ.",
|
||||
"cite-tracking-category-cite-error": "Иҫкәрмәләрендә хаталы биттәр",
|
||||
"cite-tracking-category-cite-error-desc": "Страницы в данной категории содержат ошибки в использовании тегов примечаний.\nБыл категориялағы биттәрҙә иҫкәрмәләр тегын файҙаланғанда хата ебәрелгән.",
|
||||
"cite_references_link_accessibility_label": "Өҫкә һикереү",
|
||||
"cite_references_link_many_accessibility_label": "Шунда өҫкә күсергә",
|
||||
"cite_section_preview_references": "Иҫкәрмәләрҙе алдан тикшереү",
|
||||
"cite_warning": "Өҙөмтә яҙғанды иҫкәртергә: $1",
|
||||
"cite_warning_sectionpreview_no_text": "<code>$1</code> исемле <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,27 +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_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,38 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"EugeneZelenko",
|
||||
"Jim-by",
|
||||
"Red Winged Duck",
|
||||
"Wizardist"
|
||||
]
|
||||
},
|
||||
"apihelp-query+references-description": "Вяртае прадстаўленьне зьвестак крыніц, злучаных з пададзенымі старонкамі.",
|
||||
"apihelp-query+references-example-1": "Крыніцы, зьвязаныя з старонкай <kbd>Albert Einstein</kbd>.",
|
||||
"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> зьяўляецца няслушным або мае кепскую назву",
|
||||
"cite_error_ref_too_many_keys": "Няслушны тэг <code><ref></code>;\nняслушныя назвы, ці іх было зашмат",
|
||||
"cite_error_ref_no_input": "Няслушны тэг <code><ref></code>;\nкрыніцы бяз назваў мусяць мець зьмест",
|
||||
"cite_error_references_duplicate_key": "Няслушны тэг <code><ref></code>; назва «$1» вызначаная некалькі разоў з розным зьместам",
|
||||
"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_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-tracking-category-cite-error": "Старонкі з памылкамі ў крыніцах",
|
||||
"cite-tracking-category-cite-error-desc": "Старонкі ў гэтай катэгорыі маюць памылкі ў спасылках на крыніцы.",
|
||||
"cite_references_link_accessibility_label": "Угару",
|
||||
"cite_references_link_many_accessibility_label": "Угару да:",
|
||||
"cite_section_preview_references": "Папярэдні прагляд спасылак на крыніцы",
|
||||
"cite_warning": "Папярэджаньне ў крыніцах: $1",
|
||||
"cite_warning_sectionpreview_no_text": "Тэг <code><ref></code> з назвай <code>$1</code> ня можа быць паказаны ў папярэднім праглядзе, бо ён вызначаны па-за межамі гэтага разьдзелу або ня вызначаны наогул."
|
||||
}
|
@@ -1,8 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Чаховіч Уладзіслаў"
|
||||
]
|
||||
},
|
||||
"cite_error": "Памылка цытавання $1"
|
||||
}
|
@@ -1,23 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Borislav",
|
||||
"DCLXVI",
|
||||
"Spiritia",
|
||||
"Termininja"
|
||||
]
|
||||
},
|
||||
"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_group_refs_without_references": "Присъстват етикети <code><ref></code> за групата \"$1\"; но липсва съответният етикет <code><references group=\"$1\"/></code>",
|
||||
"cite-tracking-category-cite-error": "Страници с грешка в източник"
|
||||
}
|
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Baloch Afghanistan",
|
||||
"Ibrahim khashrowdi"
|
||||
]
|
||||
},
|
||||
"cite_error": "$1: یات کورتئی خطا"
|
||||
}
|
@@ -1,8 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"SatyamMishra"
|
||||
]
|
||||
},
|
||||
"cite_error": "उद्धरण खराबी:$1"
|
||||
}
|
@@ -1,38 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Aftab1995",
|
||||
"Bellayet",
|
||||
"Nasir8891",
|
||||
"Zaheen",
|
||||
"Aftabuzzaman"
|
||||
]
|
||||
},
|
||||
"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> ট্যাগ; নামবিহীন ref সমূহের অবশ্যই বিষয়বস্তু থাকতে হবে",
|
||||
"cite_error_references_duplicate_key": "<code><ref></code> ট্যাগ অবৈধ; আলাদা বিষয়বস্তুর সঙ্গে \"$1\" নাম একাধিক বার সংজ্ঞায়িত করা হয়েছে",
|
||||
"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_group_refs_without_references": "\"$1\" নামক গ্রুপের জন্য <code><ref></code> ট্যাগ রয়েছে, কিন্তু এর জন্য কোন সঙ্গতিপূর্ণ <code><references group=\"$1\"/></code> ট্যাগ পাওয়া যায়নি, বা বন্ধকরণ <code></ref></code> দেয়া হয়নি",
|
||||
"cite_error_references_group_mismatch": "\"$1\" গ্রুপের ক্ষেত্রে <code><ref></code> ট্যাগ <code><references></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": "\"$1\" নামসহ <code><references></code>-এ সংজ্ঞায়িত <code><ref></code> ট্যাগে কোন বিষয়বস্তু নেই।",
|
||||
"cite-tracking-category-cite-error": "তথ্যসূত্র ত্রুটিসহ পাতা",
|
||||
"cite-tracking-category-cite-error-desc": "এই বিষয়শ্রেণীতে অন্তর্ভুক্ত নিবন্ধসমূহে তথ্যসূত্র ট্যাগ ব্যবহারে ত্রুটি আছে।",
|
||||
"cite_references_link_many_format_backlink_labels": "অ আ ই ঈ উ ঊ ঋ এ ঐ ও ঔ ক খ গ ঘ ঙ চ ছ জ ঝ ঞ ট ঠ ড ঢ ণ ত থ দ ধ ন প ফ ব ভ ম য র ল শ ষ স হ ড় ঢ় য় ৎ অঅ অআ অই অঈ অউ অঊ অঋ অএ অঐ অও অঔ অক অখ অগ অঘ অঙ অচ অছ অজ অঝ অঞ অট অঠ অড অঢ অণ অত অথ অদ অধ অন অপ অফ অব অভ অম অয অর অল অশ অষ অস অহ অড় অঢ় অয় অৎ আঅ আআ আই আঈ আউ আঊ আঋ আএ আঐ আও আঔ আক আখ আগ আঘ আঙ আচ আছ আজ আঝ আঞ আট আঠ আড আঢ আণ আত আথ আদ আধ আন আপ আফ আব আভ আম আয আর আল আশ আষ আস আহ আড় আঢ় আয় আৎ ইঅ ইআ ইই ইঈ ইউ ইঊ ইঋ ইএ ইঐ ইও ইঔ ইক ইখ ইগ ইঘ ইঙ ইচ ইছ ইজ ইঝ ইঞ ইট ইঠ ইড ইঢ ইণ ইত ইথ ইদ ইধ ইন ইপ ইফ ইব ইভ ইম ইয ইর ইল ইশ ইষ ইস ইহ ইড় ইঢ় ইয় ইৎ ঈঅ ঈআ ঈই ঈঈ ঈউ ঈঊ ঈঋ ঈএ ঈঐ ঈও ঈঔ ঈক ঈখ ঈগ ঈঘ ঈঙ ঈচ ঈছ ঈজ ঈঝ ঈঞ ঈট ঈঠ ঈড ঈঢ ঈণ ঈত ঈথ ঈদ ঈধ ঈন ঈপ ঈফ ঈব ঈভ ঈম ঈয ঈর ঈল ঈশ ঈষ ঈস ঈহ ঈড় ঈঢ় ঈয় ঈৎ উঅ উআ উই উঈ উউ উঊ উঋ উএ উঐ উও উঔ উক উখ উগ উঘ উঙ উচ উছ উজ উঝ উঞ উট উঠ উড উঢ উণ উত উথ উদ উধ উন উপ উফ উব উভ উম উয উর উল উশ উষ উস উহ উড় উঢ় উয় উৎ",
|
||||
"cite_references_link_accessibility_label": "ঝাঁপ দাও",
|
||||
"cite_references_link_many_accessibility_label": "ঝাঁপ দাও:",
|
||||
"cite_section_preview_references": "তথ্যসূত্রের প্রাকদর্শন",
|
||||
"cite_warning": "উদ্ধৃতি সতর্কবার্তা: $1",
|
||||
"cite_warning_sectionpreview_no_text": "<code>$1</code> নামসহ <code><ref></code> ট্যাগের প্রাকদর্শন দেখা যাবে না কারণ এটি বর্তমান অনুচ্ছেদের বাইরে সংজ্ঞায়িত করা হয়েছে বা একেবারেই সংজ্ঞায়িত করা হয়নি।"
|
||||
}
|
@@ -1,28 +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_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,33 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"CERminator",
|
||||
"Reedy",
|
||||
"KWiki",
|
||||
"Semso98",
|
||||
"Srdjan m"
|
||||
]
|
||||
},
|
||||
"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": "Početna oznaka <code><ref></code> nije ispravno oblikovana ili sadrži neispravan 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 <code><references group=\"$1\"/></code> oznaka, ili zatvarajući <code></ref></code> nedostaje",
|
||||
"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.",
|
||||
"cite-tracking-category-cite-error": "Stranice s greškama u referencama",
|
||||
"cite_references_link_accessibility_label": "Vrati se na vrh",
|
||||
"cite_references_link_many_accessibility_label": "Vrati se na:",
|
||||
"cite_section_preview_references": "Pregled referenci"
|
||||
}
|
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Filipinayzd"
|
||||
]
|
||||
},
|
||||
"cite_references_link_accessibility_label": "Lumukso",
|
||||
"cite_references_link_many_accessibility_label": "Lumukso sa:"
|
||||
}
|
@@ -1,31 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Davidpar",
|
||||
"Jordi Roqué",
|
||||
"SMP",
|
||||
"Vriullop",
|
||||
"Pere prlpz"
|
||||
]
|
||||
},
|
||||
"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_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.",
|
||||
"cite-tracking-category-cite-error": "Pàgines amb errors a les referències",
|
||||
"cite_section_preview_references": "Previsualització de les referències"
|
||||
}
|
File diff suppressed because one or more lines are too long
@@ -1,8 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Asoxor"
|
||||
]
|
||||
},
|
||||
"cite_error_ref_too_many_keys": "تاگی <code><ref></code>ی ڕێگەپێنەدراو؛\nبۆ نموونە، ناوە ھەڵەیەکان یان لە ڕادە بەدەر"
|
||||
}
|
@@ -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": "يضيف وسوم \u003Cnowiki\u003E\u003Cref[ name=id]\u003E\u003C/nowiki\u003E و \u003Cnowiki\u003E\u003Creferences/\u003E\u003C/nowiki\u003E ، للاستشهادات",
|
||||
"cite_error": "خطأ استشهاد: $1",
|
||||
"cite_error_ref_numeric_key": "وسم \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E غير صحيح؛\nالاسم لا يمكن أن يكون عددا صحيحا بسيطا. استخدم عنوانا وصفيا",
|
||||
"cite_error_ref_no_key": "وسم \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E غير صحيح؛\nالمراجع غير ذات المحتوى يجب أن تمتلك اسما",
|
||||
"cite_error_ref_too_many_keys": "وسم \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E غير صحيح؛\nأسماء غير صحيحة، على سبيل المثال كثيرة جدا",
|
||||
"cite_error_ref_no_input": "وسم \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E غير صحيح؛\nالمراجع غير ذات الاسم يجب أن تمتلك محتوى",
|
||||
"cite_error_references_invalid_parameters": "وسم \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E غير صحيح؛\nلا محددات مسموح بها.\nاستخدم \u003Ccode\u003E\u0026lt;references /\u0026gt;\u003C/code\u003E",
|
||||
"cite_error_references_invalid_parameters_group": "وسم \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E غير صحيح؛\nالمحدد \"group\" فقط مسموح به.\nاستخدم \u003Ccode\u003E\u0026lt;references /\u0026gt;\u003C/code\u003E، أو \u003Ccode\u003E\u0026lt;references group=\"...\" /\u0026gt;\u003C/code\u003E",
|
||||
"cite_error_references_no_backlink_label": "نفدت علامات الوصلات الراجعة المخصصة.\nعرف المزيد في رسالة \u003Cnowiki\u003E[[MediaWiki:Cite references link many format backlink labels]]\u003C/nowiki\u003E",
|
||||
"cite_error_no_link_label_group": "تم الإنتهاء من تسمية الارتباطات المخصصة لمجموعة \"$1\".\n\nللحصول على تعريف أكثر أنظر هذه \u003Cnowiki\u003E[[MediaWiki:$2]]\u003C/nowiki\u003E الرسالة.",
|
||||
"cite_error_references_no_text": "وسم \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E غير صحيح؛\nلا نص تم توفيره للمراجع المسماة \u003Ccode\u003E$1\u003C/code\u003E",
|
||||
"cite_error_included_ref": "إغلاق \u003Ccode\u003E\u0026lt;/ref\u0026gt;\u003C/code\u003E مفقود لوسم \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E",
|
||||
"cite_error_refs_without_references": "وسم \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E موجود، لكن لا وسم \u003Ccode\u003E\u0026lt;references/\u0026gt;\u003C/code\u003E تم العثور عليه",
|
||||
"cite_error_group_refs_without_references": "وسوم \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E موجودة لمجموعة اسمها \"$1\"، ولكن لم يتم العثور على وسم \u003Ccode\u003E\u0026lt;references group=\"$1\"/\u0026gt;\u003C/code\u003E أو هناك وسم \u003Ccode\u003E\u0026lt;/ref\u0026gt;\u003C/code\u003E ناقص",
|
||||
"cite_error_references_group_mismatch": "الوسم \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E في \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E فيه خاصية group متضاربة \"$1\".",
|
||||
"cite_error_references_missing_group": "الوسم \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E المُعرّف في \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E فيه خاصية group \"$1\" التي لا تظهر في النص السابق.",
|
||||
"cite_error_references_missing_key": "الوسم \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E ذو الاسم \"$1\" المُعرّف في \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E غير مستخدم في النص السابق.",
|
||||
"cite_error_references_no_key": "الوسم \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E المعرف في \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E ليس له خاصة اسم.",
|
||||
"cite_error_empty_references_define": "الوسم \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E المُعرّف في \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E بالاسم \"$1\" ليس له محتوى.",
|
||||
"cite_references_link_many": "\u003Cli id=\"$1\"\u003E\u003Cspan class=\"mw-cite-backlink\"\u003E\u003Cb\u003E^\u003C/b\u003E $2\u003C/span\u003E $3\u003C/li\u003E",
|
||||
"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_refs_without_references": "Les etiquetes <code><ref></code> esisten, pero nun s'alcontró denguna etiqueta <code><references/></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:"
|
||||
}
|
@@ -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"
|
||||
]
|
||||
},
|
||||
"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 sa imenom <code>$1</code>",
|
||||
"cite_error_included_ref": "Nedostaje oznaka za zatvaranje <code></ref></code> nakon <code><ref></code>",
|
||||
"cite_error_refs_without_references": "<code><ref></code> oznake postoje, ali oznaka <code><references/></code> nije pronađena",
|
||||
"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 sa imenom \"$1\" definisana 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 definisana u <code><references></code> sa imenom \"$1\" nema nikakvog sadržaja."
|
||||
}
|
@@ -1,29 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Davidpar",
|
||||
"Jordi Roqué",
|
||||
"SMP",
|
||||
"Vriullop"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Afegeix les etiquetes \u003Cnowiki\u003E\u003Cref[ name=id]\u003E\u003C/nowiki\u003E i \u003Cnowiki\u003E\u003Creferences/\u003E\u003C/nowiki\u003E, per a cites",
|
||||
"cite_error": "Error de citació: $1",
|
||||
"cite_error_ref_numeric_key": "Etiqueta \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E no vàlida;\nel nom no pot ser un nombre. Empreu una paraula o un títol descriptiu",
|
||||
"cite_error_ref_no_key": "Etiqueta \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E no vàlida;\nles refs sense contingut han de tenir nom",
|
||||
"cite_error_ref_too_many_keys": "Etiqueta \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E no vàlida;\nempreu l'estructura \u003Ccode\u003E\u0026lt;ref name=\"Nom\"\u0026gt;\u003C/code\u003E",
|
||||
"cite_error_ref_no_input": "Etiqueta \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E no vàlida; \nles referències sense nom han de tenir contingut",
|
||||
"cite_error_references_invalid_parameters": "Etiqueta \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E no vàlida; \nno es permeten paràmetres. \nUseu \u003Ccode\u003E\u0026lt;references /\u0026gt;\u003C/code\u003E",
|
||||
"cite_error_references_invalid_parameters_group": "Etiqueta \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E no vàlida;\núnicament es permet el paràmetre \"group\".\nUseu \u003Ccode\u003E\u0026lt;references /\u0026gt;\u003C/code\u003E, o \u003Ccode\u003E\u0026lt;references group=\"...\" /\u0026gt;\u003C/code\u003E",
|
||||
"cite_error_references_no_backlink_label": "Hi ha massa etiquetes personalitzades.\nSe'n poden definir més a \u003Cnowiki\u003E[[MediaWiki:Cite references link many format backlink labels]]\u003C/nowiki\u003E",
|
||||
"cite_error_no_link_label_group": "No hi ha etiquetes vincle personalitzat per al grup \"$1\".\nDefineix més al missatge \u003Cnowiki\u003E[[MediaWiki:$2]]\u003C/nowiki\u003E.",
|
||||
"cite_error_references_no_text": "Etiqueta \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E no vàlida;\nno s'ha proporcionat text per les refs amb l'etiqueta \u003Ccode\u003E$1\u003C/code\u003E",
|
||||
"cite_error_included_ref": "Es tanca el \u003Ccode\u003E\u0026lt;/ref\u0026gt;\u003C/code\u003E que manca per una etiqueta \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E",
|
||||
"cite_error_refs_without_references": "Hi ha etiquetes \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E però no s'ha trobat cap etiqueta \u003Ccode\u003E\u0026lt;references/\u0026gt;\u003C/code\u003E",
|
||||
"cite_error_group_refs_without_references": "Existeixen etiquetes \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E pel grup «$1» però no l'etiqueta \u003Ccode\u003E\u0026lt;references group=\"$1\"/\u0026gt;\u003C/code\u003E corresponent",
|
||||
"cite_error_references_group_mismatch": "L'etiqueta \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E a \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E té un conflicte amb l'atribut de grup \"$1\".",
|
||||
"cite_error_references_missing_group": "L'etiqueta \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E definida a \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E té l'atribut de grup \"$1\" que no apareix en el text anterior.",
|
||||
"cite_error_references_missing_key": "L'etiqueta \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E amb el nom \"$1\" definida a \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E no s'utilitza en el text anterior.",
|
||||
"cite_error_references_no_key": "L'etiqueta \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E definida a \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E no té cap atribut de nom.",
|
||||
"cite_error_empty_references_define": "L'etiqueta \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E definida a \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E 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_refs_without_references": "Nalezena značka <code><ref></code> bez příslušné značky <code><references/></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:"
|
||||
}
|
@@ -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,33 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Kghbln",
|
||||
"Metalhead64",
|
||||
"Purodha",
|
||||
"Raimond Spekking",
|
||||
"The Evil IP address",
|
||||
"Umherirrender"
|
||||
]
|
||||
},
|
||||
"cite-desc": "Ergänzt die Tags \u003Ccode\u003E\u003Cnowiki\u003E\u003Cref[\u0026nbsp;name=id]\u003E\u003C/nowiki\u003E\u003C/code\u003E und \u003Ccode\u003E\u003Cnowiki\u003E\u003Creferences\u0026nbsp;/\u003E\u003C/nowiki\u003E\u003C/code\u003E für Referenzierungen in Wikiseiten",
|
||||
"cite_error": "Referenzfehler: $1",
|
||||
"cite_error_ref_numeric_key": "Ungültige Verwendung von \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E: Der Parameter „name“ darf kein reiner Zahlenwert sein. Benutze einen beschreibenden Namen.",
|
||||
"cite_error_ref_no_key": "Ungültige Verwendung von \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E: Der Parameter „ref“ ohne Inhalt muss einen Namen haben.",
|
||||
"cite_error_ref_too_many_keys": "Ungültige Verwendung von \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E: Der Parameter „name“ ist ungültig oder zu lang.",
|
||||
"cite_error_ref_no_input": "Ungültige Verwendung von \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E: Der Parameter „ref“ ohne Namen muss einen Inhalt haben.",
|
||||
"cite_error_references_invalid_parameters": "Ungültige Verwendung von \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E: Es sind keine Parameter möglich. Verwende ausschließlich \u003Ccode\u003E\u003Cnowiki\u003E\u003Creferences /\u003E\u003C/nowiki\u003E\u003C/code\u003E.",
|
||||
"cite_error_references_invalid_parameters_group": "Ungültige Verwendung von \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E: Nur der Parameter „group“ ist möglich. Verwende entweder \u003Ccode\u003E\u0026lt;references /\u0026gt;\u003C/code\u003E oder \u003Ccode\u003E\u0026lt;references group=\"…\" /\u0026gt;\u003C/code\u003E.",
|
||||
"cite_error_references_no_backlink_label": "Eine Referenz der Form \u003Ccode\u003E\u0026lt;ref name=\"…\" /\u0026gt;\u003C/code\u003E wird öfter benutzt als Buchstaben vorhanden sind. Ein Administrator muss die Systemnachricht \u003Cnowiki\u003E[[MediaWiki:Cite references link many format backlink labels]]\u003C/nowiki\u003E 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 \u003Cnowiki\u003E[[MediaWiki:$2]]\u003C/nowiki\u003E festlegen.",
|
||||
"cite_error_references_no_text": "Es ist ein ungültiger \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E-Tag vorhanden: Für die Referenz namens \u003Ccode\u003E$1\u003C/code\u003E wurde kein Text angegeben.",
|
||||
"cite_error_included_ref": "Für ein \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E-Tag fehlt ein schließendes \u003Ccode\u003E\u0026lt;/ref\u0026gt;\u003C/code\u003E-Tag.",
|
||||
"cite_error_refs_without_references": "Es sind \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E-Tags vorhanden, jedoch wurde kein \u003Ccode\u003E\u0026lt;references /\u0026gt;\u003C/code\u003E-Tag gefunden.",
|
||||
"cite_error_group_refs_without_references": "Es sind \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E-Tags für die Gruppe „$1“ vorhanden, jedoch wurde kein dazugehöriges \u003Ccode\u003E\u0026lt;references group=\"$1\" /\u0026gt;\u003C/code\u003E-Tag gefunden oder ein schließendes \u003Ccode\u003E\u0026lt;/ref\u0026gt;\u003C/code\u003E fehlt.",
|
||||
"cite_error_references_group_mismatch": "Das \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E-Tag in \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E enthält das kollidierende Attribut „$1“.",
|
||||
"cite_error_references_missing_group": "Das in \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E definierte \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E-Tag hat das Gruppenattribut „$1“, das nicht im vorausgehenden Text verwendet wird.",
|
||||
"cite_error_references_missing_key": "Das in \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E definierte \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E-Tag mit dem Namen „$1“ wird im vorausgehenden Text nicht verwendet.",
|
||||
"cite_error_references_no_key": "Das in \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E definierte \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E-Tag hat kein Namensattribut.",
|
||||
"cite_error_empty_references_define": "Das in \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E definierte \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E-Tag mit dem Namen „$1“ weist keinen Inhalt auf.",
|
||||
"cite_references_link_accessibility_label": "Hochspringen",
|
||||
"cite_references_link_many_accessibility_label": "Hochspringen nach:"
|
||||
}
|
@@ -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,41 +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_refs_without_references": "<code><ref></code> tags exist, but no <code><references/></code> tag was found",
|
||||
"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 \u003Cnowiki\u003E\u003Cref[ name=id]\u003E y \u003Creferences /\u003E\u003C/nowiki\u003E para utilizar notas al pie.",
|
||||
"cite_error": "Error en la cita: $1",
|
||||
"cite_error_ref_numeric_key": "Etiqueta \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E no válida;\nel nombre no puede ser un número entero. Use un título descriptivo",
|
||||
"cite_error_ref_no_key": "Etiqueta \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E no válida;\nlas referencias sin contenido deben tener un nombre",
|
||||
"cite_error_ref_too_many_keys": "Etiqueta \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E inválida;\ncontiene parámetros no reconocidos",
|
||||
"cite_error_ref_no_input": "Etiqueta \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E no válida;\nlas referencias sin nombre deben tener contenido",
|
||||
"cite_error_references_invalid_parameters": "Etiqueta \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E no válida;\nno se admiten parámetros.\nUse \u003Ccode\u003E\u0026lt;references /\u0026gt;\u003C/code\u003E",
|
||||
"cite_error_references_invalid_parameters_group": "Etiqueta \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E no válida;\nsólo se permite el parámetro «group».\nUse \u003Ccode\u003E\u0026lt;references /\u0026gt;\u003C/code\u003E, o \u003Ccode\u003E\u0026lt;references group=\"...\" /\u0026gt;\u003C/code\u003E",
|
||||
"cite_error_references_no_backlink_label": "Se han acabado las etiquetas personalizadas de vínculos de retroceso.\nDefine más en \u003Cnowiki\u003E[[MediaWiki:Cite references link many format backlink labels]]\u003C/nowiki\u003E.",
|
||||
"cite_error_no_link_label_group": "Se han acabado las etiquetas personalizadas para vínculos del grupo \"$1\".\nDefine más en el mensaje \u003Cnowiki\u003E[[MediaWiki:$2]]\u003C/nowiki\u003E.",
|
||||
"cite_error_references_no_text": "Etiqueta \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E inválida;\nno se ha definido el contenido de las referencias llamadas \u003Ccode\u003E$1\u003C/code\u003E",
|
||||
"cite_error_included_ref": "Etiqueta de apertura \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E sin su correspondiente cierre \u003Ccode\u003E\u0026lt;/ref\u0026gt;\u003C/code\u003E",
|
||||
"cite_error_refs_without_references": "Existen etiquetas \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E, pero no se encontró una etiqueta \u003Ccode\u003E\u0026lt;references /\u0026gt;\u003C/code\u003E",
|
||||
"cite_error_group_refs_without_references": "Existen etiquetas \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E para un grupo llamado «$1», pero no se encontró la etiqueta \u003Ccode\u003E\u0026lt;references group=\"$1\"/\u0026gt;\u003C/code\u003E correspondiente, o falta la etiqueta \u003Ccode\u003E\u0026lt;/ref\u0026gt;\u003C/code\u003E de cierre",
|
||||
"cite_error_references_group_mismatch": "La etiqueta \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E en \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E presenta el atributo de grupo \"$1\" en conflicto.",
|
||||
"cite_error_references_missing_group": "La etiqueta \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E definida en \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E pertenece al grupo \"$1\" no declarado en el texto precedente.",
|
||||
"cite_error_references_missing_key": "La etiqueta \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E con nombre \"$1\" definida en \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E no se utiliza en el texto precedente.",
|
||||
"cite_error_references_no_key": "La etiqueta \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E definida en \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E no tiene atributo de nombre.",
|
||||
"cite_error_empty_references_define": "La etiqueta \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E definida en \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E 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,26 +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_refs_without_references": "<code><ref></code>-sildid on olemas, aga <code><references/></code>-silt 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."
|
||||
}
|
@@ -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,33 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Ebraminio",
|
||||
"Huji",
|
||||
"Wayiran",
|
||||
"ZxxZxxZ"
|
||||
]
|
||||
},
|
||||
"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_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_reference_link_key_with_num": "$1_$2",
|
||||
"cite_reference_link_prefix": "cite_ref-",
|
||||
"cite_references_link_accessibility_label": "پرش به بالا",
|
||||
"cite_references_link_many_accessibility_label": "پرش به بالا به:"
|
||||
}
|
@@ -1,32 +0,0 @@
|
||||
{
|
||||
"@metadata": {
|
||||
"authors": [
|
||||
"Agony",
|
||||
"Crt",
|
||||
"Nike",
|
||||
"Olli",
|
||||
"Silvonen",
|
||||
"Str4nd",
|
||||
"Tarmo"
|
||||
]
|
||||
},
|
||||
"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",
|
||||
"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 \u003Cnowiki\u003E\u003Cref[ name=\"id\"]\u003E\u003C/nowiki\u003E et \u003Cnowiki\u003E\u003Creferences/\u003E\u003C/nowiki\u003E 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 \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E incorrecte ;\nle nom ne peut être un entier simple. Utilisez un titre descriptif.",
|
||||
"cite_error_ref_no_key": "Balise \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E incorrecte ;\nles références sans contenu doivent avoir un nom.",
|
||||
"cite_error_ref_too_many_keys": "Balise \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E incorrecte ;\nnoms incorrects, par exemple trop nombreux.",
|
||||
"cite_error_ref_no_input": "Balise \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E incorrecte ;\nles références sans nom doivent avoir un contenu.",
|
||||
"cite_error_references_invalid_parameters": "Balise \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E incorrecte ;\naucun paramètre n’est permis.\nUtilisez simplement \u003Ccode\u003E\u0026lt;references /\u0026gt;\u003C/code\u003E.",
|
||||
"cite_error_references_invalid_parameters_group": "Balise \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E incorrecte ;\nseul l’attribut « group » est autorisé.\nUtilisez \u003Ccode\u003E\u0026lt;references /\u0026gt;\u003C/code\u003E, ou bien \u003Ccode\u003E\u0026lt;references group=\"...\" /\u0026gt;\u003C/code\u003E.",
|
||||
"cite_error_references_no_backlink_label": "Épuisement des étiquettes de liens personnalisées.\nDéfinissez-en un plus grand nombre dans le message \u003Cnowiki\u003E[[MediaWiki:Cite references link many format backlink labels]]\u003C/nowiki\u003E.",
|
||||
"cite_error_no_link_label_group": "Plus d’étiquettes de liens personnalisées pour le groupe « $1 ».\nDéfinissez-en plus dans le message \u003Cnowiki\u003E[[MediaWiki:$2]]\u003C/nowiki\u003E.",
|
||||
"cite_error_references_no_text": "Balise \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E incorrecte ;\naucun texte n’a été fourni pour les références nommées \u003Ccode\u003E$1\u003C/code\u003E.",
|
||||
"cite_error_included_ref": "Clôture \u003Ccode\u003E\u0026lt;/ref\u0026gt;\u003C/code\u003E manquante pour la balise \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E.",
|
||||
"cite_error_refs_without_references": "Des balises \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E existent, mais aucune balise \u003Ccode\u003E\u0026lt;references/\u0026gt;\u003C/code\u003E n’a été trouvée.",
|
||||
"cite_error_group_refs_without_references": "Des balises \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E existent pour un groupe nommé « $1 », mais aucune balise \u003Ccode\u003E\u0026lt;references group=\"$1\"/\u0026gt;\u003C/code\u003E correspondante n’a été trouvée, ou bien une valise fermante \u003Ccode\u003E\u0026lt;/ref\u0026gt;\u003C/code\u003E manque.",
|
||||
"cite_error_references_group_mismatch": "La balise \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E dans \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E a l’attribut de groupe « $1 » qui entre en conflit avec celui de \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E.",
|
||||
"cite_error_references_missing_group": "La balise \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E définie dans \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E a un groupe attribué « $1 » qui ne figure pas dans le texte précédent.",
|
||||
"cite_error_references_missing_key": "La balise \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E avec le nom « $1 » définie dans \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E n’est pas utilisé dans le texte précédent.",
|
||||
"cite_error_references_no_key": "La balise \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E définie dans \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E n’a pas d’attribut de nom.",
|
||||
"cite_error_empty_references_define": "La balise \u003Ccode\u003E\u0026lt;ref\u0026gt;\u003C/code\u003E défini dans \u003Ccode\u003E\u0026lt;references\u0026gt;\u003C/code\u003E avec le nom « $1 » n’a pas de contenu.",
|
||||
"cite_references_link_many_format": "\u003Csup style=\"margin-left:.2em;margin-right:.2em;\"\u003E[[#$1|$2]]\u003C/sup\u003E",
|
||||
"cite_references_link_many_sep": ",\u0026#32;",
|
||||
"cite_references_link_many_and": "\u0026#32;et\u0026#32;",
|
||||
"cite_references_link_accessibility_label": "Aller",
|
||||
"cite_references_link_many_accessibility_label": "Aller à :"
|
||||
}
|
@@ -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_refs_without_references": "As etiquetas <code><ref></code> existen, pero non se atopou ningunha etiqueta <code><references/></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:"
|
||||
}
|
@@ -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_refs_without_references": "קיימים תגי <code><ref></code>, אך לא נמצא תג <code dir=\"ltr\"></references></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": "לקפוץ מעלה אל:"
|
||||
}
|
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>"
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user