first commit

This commit is contained in:
jinhojang6 2023-08-31 23:09:23 +09:00
commit 0f71ae6e3c
847 changed files with 88242 additions and 0 deletions

44
.gitignore vendored Normal file
View File

@ -0,0 +1,44 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
/.idea
# pwa
/public/sw*
/public/workbox-*
.env
# testing
/coverage
# next.js
/.next/
/out/
# production
/build
public/feed.xml
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local
# vercel
.vercel
firebase.js

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM mediawiki
RUN apt-get update && apt-get install vim -y
EXPOSE 8080

142
LocalSettings.php Normal file
View File

@ -0,0 +1,142 @@
<?php
# This file was automatically generated by the MediaWiki 1.40.0
# installer. If you make manual changes, please keep track in case you
# need to recreate them later.
#
# See includes/MainConfigSchema.php for all configurable settings
# and their default values, but don't forget to make changes in _this_
# file, not there.
#
# Further documentation for configuration settings may be found at:
# https://www.mediawiki.org/wiki/Manual:Configuration_settings
# Protect against web entry
if ( !defined( 'MEDIAWIKI' ) ) {
exit;
}
## Uncomment this to disable output compression
# $wgDisableOutputCompression = true;
$wgSitename = "Logos";
## The URL base path to the directory containing the wiki;
## defaults for all runtime URL paths are based off of this.
## For more information on customizing the URLs
## (like /w/index.php/Page_title to /wiki/Page_title) please see:
## https://www.mediawiki.org/wiki/Manual:Short_URL
$wgScriptPath = "";
## The protocol and server name to use in fully-qualified URLs
$wgServer = "http://localhost:8080";
## The URL path to static resources (images, scripts, etc.)
$wgResourceBasePath = $wgScriptPath;
## The URL paths to the logo. Make sure you change this from the default,
## or else you'll overwrite your logo when you upgrade!
$wgLogos = [
'1x' => "$wgResourceBasePath/resources/assets/change-your-logo.svg",
'icon' => "$wgResourceBasePath/resources/assets/change-your-logo-icon.svg",
];
## UPO means: this is also a user preference option
$wgEnableEmail = true;
$wgEnableUserEmail = true; # UPO
$wgEmergencyContact = "";
$wgPasswordSender = "";
$wgEnotifUserTalk = false; # UPO
$wgEnotifWatchlist = false; # UPO
$wgEmailAuthentication = true;
## Database settings
$wgDBtype = "mysql";
$wgDBserver = "database";
$wgDBname = "wiki";
$wgDBuser = "admin";
$wgDBpassword = "610BnHyDFXz";
# MySQL specific settings
$wgDBprefix = "";
# MySQL table options to use during installation or update
$wgDBTableOptions = "ENGINE=InnoDB, DEFAULT CHARSET=binary";
# Shared database table
# This has no effect unless $wgSharedDB is also set.
$wgSharedTables[] = "actor";
## Shared memory settings
$wgMainCacheType = CACHE_NONE;
$wgMemCachedServers = [];
## To enable image uploads, make sure the 'images' directory
## is writable, then set this to true:
$wgEnableUploads = false;
$wgUseImageMagick = true;
$wgImageMagickConvertCommand = "/usr/bin/convert";
# InstantCommons allows wiki to use images from https://commons.wikimedia.org
$wgUseInstantCommons = false;
# Periodically send a pingback to https://www.mediawiki.org/ with basic data
# about this MediaWiki instance. The Wikimedia Foundation shares this data
# with MediaWiki developers to help guide future development efforts.
$wgPingback = true;
# Site language code, should be one of the list in ./includes/languages/data/Names.php
$wgLanguageCode = "en";
# Time zone
$wgLocaltimezone = "UTC";
## Set $wgCacheDirectory to a writable directory on the web server
## to make your wiki go slightly faster. The directory should not
## be publicly accessible from the web.
#$wgCacheDirectory = "$IP/cache";
$wgSecretKey = "f4c6e639c9ce3ed1b5d12bd356250574b73bf9f633f45d99462c17b8cc1fdf4a";
# Changing this will log out all existing sessions.
$wgAuthenticationTokenVersion = "1";
# Site upgrade key. Must be set to a string (default provided) to turn on the
# web installer while LocalSettings.php is in place
$wgUpgradeKey = "cc6cdc359727f97d";
## For attaching licensing metadata to pages, and displaying an
## appropriate copyright notice / icon. GNU Free Documentation
## License and Creative Commons licenses are supported so far.
$wgRightsPage = ""; # Set to the title of a wiki page that describes your license/copyright
$wgRightsUrl = "";
$wgRightsText = "";
$wgRightsIcon = "";
# Path to the GNU diff3 utility. Used for conflict resolution.
$wgDiff3 = "/usr/bin/diff3";
## Default skin: you can change the default skin. Use the internal symbolic
## names, e.g. 'vector' or 'monobook':
$wgDefaultSkin = "vector-2022";
error_reporting( -1 );
ini_set( 'display_errors', 1 );
$wgShowExceptionDetails = true;
$wgShowDBErrorBacktrace = true;
# Enabled skins.
# The following skins were automatically enabled:
wfLoadSkin( 'MinervaNeue' );
wfLoadSkin( 'MonoBook' );
wfLoadSkin( 'Timeless' );
wfLoadSkin( 'Vector' );
# End of automatically generated settings.
# Add more configuration options below.

81
README.md Normal file
View File

@ -0,0 +1,81 @@
## Install
1. Make sure to comment out `- ./LocalSettings.php:/var/www/html/LocalSettings.php` in `docker-compose.yaml` and run `docker-compose up --build -d`. An error will be raised if you use an existing `LocalSettings.php`.
2. Visit `http://localhost:8080/`
3. Click `Please set up the wiki first.` and select a language
4. Continue
5. Set up database
Database host: database (must be the same as the container name of mariadb)
Database name: (must be the same as MYSQL_DATABASE of docker-compose.yaml)
Database username: (must be the same as MYSQL_USER of docker-compose.yaml)
Database password: (must be the same as MYSQL_PASSWORD of docker-compose.yaml)
6. Continue
7. Set up wiki admin account and select `I'm bored already, just install the wiki.` if a detailed configuration is not needed.
8. Continue
9. `LocalSettings.php` will be downloaded automatically.
10. Stop all the containers with `docker-compose down` and Put `LocalSettings.php` in the root directory of the repo.
11. (Important) Change `$wgDefaultSkin = "vector";` to `$wgDefaultSkin = "vector-2022";` in `LocalSettings.php`
12. (Optional) Add the following lines below `$wgDefaultSkin` in order to display errors in your browser, if any. This will help you enable error display and debugging features for your MediaWiki installation.
```
error_reporting( -1 );
ini_set( 'display_errors', 1 );
$wgShowExceptionDetails = true;
$wgShowDBErrorBacktrace = true;
```
13. (Important) Uncomment `- ./LocalSettings.php:/var/www/html/LocalSettings.php` in `docker-compose.yaml` to apply the configuration in `LocalSettings.php`
14. run `docker-compose up --build -d` again.
15. Sign in with the admin account
## Checking files
```
docker exec -it --user=root {container id from docker ps} bash
e.g.,
docker exec -it --user=root 24a696c42c95 bash
```
## Installing Vim editor inside container
```
apt-get update
apt-get install vim
```
## Customizing CSS
Vector/resources/common/variable.less
- Change the hex code of @background-color-secondary
## MediaWiki References
- [Github](https://github.com/wikimedia/mediawiki)
- [Manual:How to make a MediaWiki skin](https://www.mediawiki.org/wiki/Manual:How_to_make_a_MediaWiki_skin)
- [Custom pages](https://github.com/wikimedia/mediawiki/tree/master/includes/specialpage)
- [Object Factory](https://www.mediawiki.org/wiki/ObjectFactory)

7
Vector/.eslintignore Normal file
View File

@ -0,0 +1,7 @@
/.storybook/
/docs/
/a11y/
/i18n/
/node_modules/
/vendor/
/coverage/

17
Vector/.eslintrc.json Normal file
View File

@ -0,0 +1,17 @@
{
"root": true,
"extends": [
"wikimedia/client-es5",
"wikimedia/jquery",
"wikimedia/mediawiki"
],
"rules": {
"//": [
"off",
"ResourceLoader's `packageFiles` do not require wrapping but the `module` option is only available in ES6+."
],
"no-implicit-globals": "off",
"compat/compat": "warn",
"mediawiki/class-doc": "off"
}
}

28
Vector/.eslintrcEs6.json Normal file
View File

@ -0,0 +1,28 @@
{
"root": true,
"extends": [
"wikimedia/client-es6",
"wikimedia/jquery",
"wikimedia/mediawiki"
],
"env": {
"browser": true
},
"globals": {
"exports": true
},
"parserOptions": {
"sourceType": "module"
},
"settings": {
"jsdoc": {
"preferredTypes": {
"VectorHeaderObserver": "VectorHeaderObserver"
}
}
},
"rules": {
"compat/compat": "off",
"mediawiki/class-doc": "off"
}
}

51
Vector/.gitignore vendored Normal file
View File

@ -0,0 +1,51 @@
# git-deploy status file:
/.deploy
# Editors
*.kate-swp
*~
\#*#
.#*
.*.swp
.project
cscope.files
cscope.out
## NetBeans
nbproject*
project.index
## Sublime
sublime-*
sftp-config.json
# Building & testing
/composer.lock
/docs
/a11y
/node_modules
/vendor
/coverage
# Operating systems
## Mac OS X
.DS_Store
## Windows
Thumbs.db
# Misc
.buildpath
.classpath
.idea
.metadata*
.settings
/static*
/tags
/.htaccess
/.htpasswd
.eslintcache
# storybook
/.storybook/resolve-less-imports/
/.storybook/resolve-imports/
/.storybook/integration.less
.vscode
/.phpunit.result.cache

6
Vector/.gitreview Normal file
View File

@ -0,0 +1,6 @@
[gerrit]
host=gerrit.wikimedia.org
port=29418
project=mediawiki/skins/Vector.git
track=1
defaultrebase=0

1
Vector/.nvmrc Normal file
View File

@ -0,0 +1 @@
16.16.0

19
Vector/.phan/config.php Normal file
View File

@ -0,0 +1,19 @@
<?php
/**
* 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.
*
*/
return require __DIR__ . '/../vendor/mediawiki/mediawiki-phan-config/src/config.php';

7
Vector/.phpcs.xml Normal file
View File

@ -0,0 +1,7 @@
<?xml version="1.0"?>
<ruleset>
<rule ref="./vendor/mediawiki/mediawiki-codesniffer/MediaWiki" />
<file>.</file>
<arg name="extensions" value="php"/>
<arg name="encoding" value="UTF-8"/>
</ruleset>

View File

@ -0,0 +1,28 @@
@import '../resources/common/variables.less';
@import './integration.less';
@import './icons.less';
body {
font-family: @font-family-sans;
margin: 0;
}
a {
text-decoration: none;
}
ul {
padding: 0;
}
#mw-panel {
background-color: @background-color-secondary;
}
.printfooter {
display: none;
}
.vector-storybook-example-table tr {
vertical-align: top;
}

View File

@ -0,0 +1,5 @@
import { configure } from '@storybook/html';
import './common.less';
// automatically import all files ending in *.stories.js
configure(require.context('../stories', true, /\.stories\.js$/), module);

View File

@ -0,0 +1,100 @@
.vector-menu-dropdown .vector-menu-heading:after {
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23202122' d='m11.05 3.996-.965-1.053-4.035 3.86-3.947-3.86L1.05 3.996l5 5 5-5'/%3E%3C/svg%3E%0A") !important;
}
.mw-wiki-logo {
background-image: url(https://en.wikipedia.org/static/images/project-logos/enwiki-2x.png);
background-size: 135px auto;
}
.oo-ui-icon-bell {
opacity: 0.51;
background-image: linear-gradient(transparent,transparent),
url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2220%22 height=%2220%22 viewBox=%220 0 20 20%22%3E%3Ctitle%3Ebell%3C/title%3E%3Cpath d=%22M16 7a5.38 5.38 0 0 0-4.46-4.85C11.6 1.46 11.53 0 10 0S8.4 1.46 8.46 2.15A5.38 5.38 0 0 0 4 7v6l-2 2v1h16v-1l-2-2zm-6 13a3 3 0 0 0 3-3H7a3 3 0 0 0 3 3z%22/%3E%3C/svg%3E");
}
.oo-ui-icon-tray {
background-image: linear-gradient(transparent,transparent),
url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2220%22 height=%2220%22 viewBox=%220 0 20 20%22%3E%3Ctitle%3Etray%3C/title%3E%3Cpath d=%22M3 1a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2zm14 12h-4l-1 2H8l-1-2H3V3h14z%22/%3E%3C/svg%3E");
}
.mw-ui-icon-add:before {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctitle%3Elanguage%3C/title%3E%3Cg fill='%2354595d'%3E%3Cpath d='M11 9V4H9v5H4v2h5v5h2v-5h5V9z'/%3E%3C/g%3E%3C/svg%3E");
}
.mw-ui-icon-add-invert:before {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctitle%3Elanguage%3C/title%3E%3Cg fill='white'%3E%3Cpath d='M11 9V4H9v5H4v2h5v5h2v-5h5V9z'/%3E%3C/g%3E%3C/svg%3E");
}
.mw-ui-icon-add-progressive:before {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctitle%3Elanguage%3C/title%3E%3Cg fill='%23447ff5'%3E%3Cpath d='M11 9V4H9v5H4v2h5v5h2v-5h5V9z'/%3E%3C/g%3E%3C/svg%3E");
}
.mw-ui-icon-add-destructive:before {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctitle%3Elanguage%3C/title%3E%3Cg fill='%23ff4242'%3E%3Cpath d='M11 9V4H9v5H4v2h5v5h2v-5h5V9z'/%3E%3C/g%3E%3C/svg%3E");
}
.uls-trigger {
background-image: linear-gradient(transparent,transparent),
url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2220%22 height=%2220%22 viewBox=%220 0 20 20%22%3E %3Ctitle%3E language %3C/title%3E %3Cpath d=%22M20 18h-1.44a.61.61 0 0 1-.4-.12.81.81 0 0 1-.23-.31L17 15h-5l-1 2.54a.77.77 0 0 1-.22.3.59.59 0 0 1-.4.14H9l4.55-11.47h1.89zm-3.53-4.31L14.89 9.5a11.62 11.62 0 0 1-.39-1.24q-.09.37-.19.69l-.19.56-1.58 4.19zm-6.3-1.58a13.43 13.43 0 0 1-2.91-1.41 11.46 11.46 0 0 0 2.81-5.37H12V4H7.31a4 4 0 0 0-.2-.56C6.87 2.79 6.6 2 6.6 2l-1.47.5s.4.89.6 1.5H0v1.33h2.15A11.23 11.23 0 0 0 5 10.7a17.19 17.19 0 0 1-5 2.1q.56.82.87 1.38a23.28 23.28 0 0 0 5.22-2.51 15.64 15.64 0 0 0 3.56 1.77zM3.63 5.33h4.91a8.11 8.11 0 0 1-2.45 4.45 9.11 9.11 0 0 1-2.46-4.45z%22/%3E %3C/svg%3E") !important;
}
.mw-ui-icon-wikimedia-language:before {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctitle%3Elanguage%3C/title%3E%3Cg fill='%2354595d'%3E%3Cpath d='M20 18h-1.44a.61.61 0 01-.4-.12.81.81 0 01-.23-.31L17 15h-5l-1 2.54a.77.77 0 01-.22.3.59.59 0 01-.4.14H9l4.55-11.47h1.89zm-3.53-4.31L14.89 9.5a11.62 11.62 0 01-.39-1.24q-.09.37-.19.69l-.19.56-1.58 4.19zm-6.3-1.58a13.43 13.43 0 01-2.91-1.41 11.46 11.46 0 002.81-5.37H12V4H7.31a4 4 0 00-.2-.56C6.87 2.79 6.6 2 6.6 2l-1.47.5s.4.89.6 1.5H0v1.33h2.15A11.23 11.23 0 005 10.7a17.19 17.19 0 01-5 2.1q.56.82.87 1.38a23.28 23.28 0 005.22-2.51 15.64 15.64 0 003.56 1.77zM3.63 5.33h4.91a8.11 8.11 0 01-2.45 4.45 9.11 9.11 0 01-2.46-4.45z'/%3E%3C/g%3E%3C/svg%3E");
}
.mw-ui-icon-wikimedia-userTalk:before {
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctitle%3Euser talk%3C/title%3E%3Cpath d='M18 0H2a2 2 0 00-2 2v18l4-4h14a2 2 0 002-2V2a2 2 0 00-2-2zm-4 4a1.5 1.5 0 11-1.5 1.5A1.5 1.5 0 0114 4zM6 4a1.5 1.5 0 11-1.5 1.5A1.5 1.5 0 016 4zm4 8c-2.61 0-4.83-.67-5.65-3h11.3c-.82 2.33-3.04 3-5.65 3z'/%3E%3C/svg%3E");
}
.mw-ui-icon-wikimedia-sandbox:before {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctitle%3Esandbox%3C/title%3E%3Cpath d='M8 12V9l6-6 3 3-6 6H8zm10-7l-3-3 2-2 3 3-2 2zM8 2h2v2H8zM4 2h2v2H4zM0 3a1 1 0 011-1h1v2H0V3zm0 3h2v2H0zm0 4h2v2H0zm0 4h2v2H0zm0 4h2v2H1a1 1 0 01-1-1v-1zm4 0h2v2H4zm4 0h2v2H8zm4 0h2v1a1 1 0 01-1 1h-1v-2zm0-4h2v2h-2z'/%3E%3C/svg%3E");
}
.mw-ui-icon-wikimedia-settings:before {
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctitle%3Esettings%3C/title%3E%3Cg transform='translate(10 10)'%3E%3Cpath id='a' d='M1.5-10h-3l-1 6.5h5m0 7h-5l1 6.5h3'/%3E%3Cuse transform='rotate(45)' xlink:href='%23a'/%3E%3Cuse transform='rotate(90)' xlink:href='%23a'/%3E%3Cuse transform='rotate(135)' xlink:href='%23a'/%3E%3C/g%3E%3Cpath d='M10 2.5a7.5 7.5 0 000 15 7.5 7.5 0 000-15v4a3.5 3.5 0 010 7 3.5 3.5 0 010-7'/%3E%3C/svg%3E");
}
.mw-ui-icon-wikimedia-unStar:before {
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctitle%3Eun-star%3C/title%3E%3Cpath d='M20 7h-7L10 .5 7 7H0l5.46 5.47-1.64 7 6.18-3.7 6.18 3.73-1.63-7z'/%3E%3C/svg%3E");
}
.mw-ui-icon-wikimedia-userContributions:before {
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctitle%3Euser contributions%3C/title%3E%3Ccircle cx='2' cy='4' r='2'/%3E%3Ccircle cx='2' cy='10' r='2'/%3E%3Ccircle cx='2' cy='16' r='2'/%3E%3Ccircle cx='15.5' cy='10.5' r='2.5'/%3E%3Cpath d='M6 15h3v2H6zm0-6h5v2H6zm0-6h11v2H6zm9.5 10.556c-3.33 0-4.5 1.666-4.5 2.777V18h9v-1.667c0-1.11-1.17-2.777-4.5-2.777z'/%3E%3C/svg%3E");
}
.mw-ui-icon-wikimedia-logIn:before {
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctitle%3Elog in%3C/title%3E%3Cpath d='M1 11v6c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v6h8V5l4.75 5L9 15v-4H1z'/%3E%3C/svg%3E");
}
.mw-ui-icon-wikimedia-logOut:before {
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctitle%3Elog out%3C/title%3E%3Cpath d='M3 3h8V1H3a2 2 0 00-2 2v14a2 2 0 002 2h8v-2H3z'/%3E%3Cpath d='M13 5v4H5v2h8v4l6-5z'/%3E%3C/svg%3E");
}
.mw-ui-icon-wikimedia-ellipsis:before {
background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctitle%3Eellipsis%3C/title%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Ccircle cx='3' cy='10' r='2'/%3E%3Ccircle cx='17' cy='10' r='2'/%3E%3C/svg%3E%0A");
}
.mw-ui-icon-wikimedia-search:before {
background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%3E%3Ctitle%3Esearch%3C%2Ftitle%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M12.2%2013.6a7%207%200%20111.4-1.4l5.4%205.4-1.4%201.4-5.4-5.4zM13%208A5%205%200%20113%208a5%205%200%200110%200z%22%2F%3E%3C%2Fsvg%3E");
}
.mw-ui-icon-wikimedia-userAvatar:before {
background-image: url("data:image/svg+xml;charset=utf8,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctitle%3Euser avatar%3C/title%3E%3Cpath d='M10 11c-5.92 0-8 3-8 5v3h16v-3c0-2-2.08-5-8-5z'/%3E%3Ccircle cx='10' cy='5.5' r='4.5'/%3E%3C/svg%3E");
}
.mw-ui-icon-wikimedia-watchlist:before {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ctitle%3E watchlist %3C/title%3E%3Cpath d='M1 3h16v2H1V3Zm0 6h6v2H1V9Zm0 6h8v2H1v-2Zm8-4.24h3.85L14.5 7l1.65 3.76H20l-3 3.17.9 4.05-3.4-2.14L11.1 18l.9-4.05-3-3.19Z'/%3E%3C/svg%3E")
}
.vector-user-menu-legacy #pt-anonuserpage,
.vector-user-menu-legacy #pt-userpage a {
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAx0lEQVQ4jdXSzQmEQAwFYEuYUixhSwgkA8mQgKXYgS3YgXZgCZagHWgHuxf14t8osssGcv145CVJvjk+hBRFK2TrkK1D0cqHkN7CUBRI7L21KAqXMIDModiwD9oAkLlH0i3L+ooGiTWPAPPfJQTIHLGOB9h46YZnKS+3PI8PISW2GkV7FO2Jrb79h4+ODyElsYJYm437NSRWRCWdylgj++U0u+UAZI5E22hsWW03UWQtr2NT66zlCjz8uzNQbFiDN7F5/xB8aj57Ynp2FKI0bAAAAABJRU5ErkJggg==") !important;
}
.mw-ui-icon-wikimedia-speechBubbles:before {
background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2220%22 height=%2220%22 viewBox=%220 0 20 20%22%3E%3Ctitle%3Espeech bubbles%3C/title%3E%3Cg fill=%22%23000%22%3E%3Cpath d=%22M17 4v7a2 2 0 01-2 2H4v1a2 2 0 002 2h10l4 4V6a2 2 0 00-2-2zM6 10H0v6z%22/%3E%3Crect width=%2216%22 height=%2212%22 rx=%222%22/%3E%3C/g%3E%3C/svg%3E");
}
.mw-ui-icon-wikimedia-history:before {
background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2220%22 height=%2220%22 viewBox=%220 0 20 20%22%3E%3Ctitle%3Ehistory%3C/title%3E%3Cg fill=%22%23000%22%3E%3Cpath d=%22M9 6v5h.06l2.48 2.47 1.41-1.41L11 10.11V6z%22/%3E%3Cpath d=%22M10 1a9 9 0 00-7.85 13.35L.5 16H6v-5.5l-2.38 2.38A7 7 0 1110 17v2a9 9 0 000-18z%22/%3E%3C/g%3E%3C/svg%3E");
}

View File

@ -0,0 +1,79 @@
const path = require( 'path' );
module.exports = {
resolve: {
alias: {
// FIXME: These imports should be updated in the story files instead of here.
'../resources/skins.vector.styles/Footer.less': '../resources/common/components/Footer.less',
'../resources/skins.vector.styles/LanguageButton.less': '../resources/skins.vector.styles/components/LanguageButton.less',
'../resources/skins.vector.styles/skin-legacy.less': '../resources/skins.vector.styles.legacy/skin-legacy.less',
'../resources/skins.vector.styles/Logo.less': '../resources/skins.vector.styles/components/Logo.less',
'../resources/skins.vector.styles/Menu.less': '../resources/common/components/Menu.less',
'../.storybook/common.less': '../resources/common/common.less',
'../resources/skins.vector.styles/MenuDropdown.less': '../resources/common/components/MenuDropdown.less',
'../resources/skins.vector.styles/MenuPortal.less': '../resources/skins.vector.styles/components/MenuPortal.less',
'../resources/skins.vector.styles/MenuTabs.less': '../resources/common/components/MenuTabs.less',
'../resources/skins.vector.styles/TabWatchstarLink.less': '../resources/common/components/TabWatchstarLink.less',
'../resources/skins.vector.styles/SearchBox.less': '../resources/common/components/SearchBox.less',
'../resources/skins.vector.styles/MainMenu.less': '../resources/skins.vector.styles/components/MainMenu.less',
'../resources/skins.vector.styles/SidebarLogo.less': '../resources/common/components/SidebarLogo.less',
'../resources/skins.vector.styles/MenuPortal.less': '../resources/skins.vector.styles/components/MenuPortal.less'
}
},
module: {
rules: [ {
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
// Beware of https://github.com/babel/babel-loader/issues/690. Changes to browsers require
// manual invalidation.
cacheDirectory: true
}
}
},
{
test: /\.css$/,
use: [ {
loader: 'style-loader'
}, {
loader: 'css-loader'
} ]
},
{
test: /\.(gif|png|jpe?g|svg)$/i,
loader: 'file-loader',
options: {
paths: [
path.resolve( __dirname, './resolve-imports' )
]
}
},
{
// in core some LESS imports don't specify filename
test: /\.less$/,
use: [ {
loader: 'style-loader'
}, {
loader: 'css-loader',
options: {
// FIXME: Disable resolving of CSS urls until Storybook is upgraded
// to use Webpack 5 and array values for aliases
// (which would cleanly resolve urls in LESS partial starting with `url(images/...)` )
url: false
}
}, {
loader: 'less-loader',
options: {
relativeUrls: true,
strictUnits: true,
paths: [
path.resolve( __dirname, 'resolve-imports' )
]
}
} ]
},
]
}
};

6
Vector/.stylelintignore Normal file
View File

@ -0,0 +1,6 @@
/.storybook/
/docs/
/node_modules/
/skinStyles/jquery.ui/
/vendor/
/coverage/

13
Vector/.stylelintrc.json Normal file
View File

@ -0,0 +1,13 @@
{
"extends": [
"stylelint-config-wikimedia/support-modern",
"stylelint-config-wikimedia/mediawiki"
],
"reportNeedlessDisables": true,
"rules": {
"declaration-property-unit-disallowed-list": null,
"no-descending-specificity": null,
"selector-class-pattern": null,
"selector-max-id": null
}
}

40
Vector/.svgo.config.js Normal file
View File

@ -0,0 +1,40 @@
/**
* SVGO Configuration
* Compatible to v2.4.0+
* Recommended options from:
* https://www.mediawiki.org/wiki/Manual:Coding_conventions/SVG#Exemplified_safe_configuration
*/
module.exports = {
plugins: [
{
// Set of built-in plugins enabled by default.
name: 'preset-default',
params: {
overrides: {
cleanupIDs: false,
removeDesc: false,
removeTitle: false,
removeViewBox: false,
// If the SVG doesn't start with an XML declaration, then its MIME type will
// be detected as "text/plain" rather than "image/svg+xml" by libmagic and,
// consequently, MediaWiki's CSSMin CSS minifier. libmagic's default database
// currently requires that SVGs contain an XML declaration:
// https://github.com/threatstack/libmagic/blob/master/magic/Magdir/sgml#L5
removeXMLProcInst: false
}
}
},
'removeRasterImages',
'sortAttrs'
],
// Set whitespace according to Wikimedia Coding Conventions.
// @see https://github.com/svg/svgo/blob/v2.8.0/lib/stringifier.js#L41 for available options.
js2svg: {
eol: 'lf',
finalNewline: true,
// Configure the indent to tabs (default 4 spaces) used by `--pretty` here.
indent: '\t',
pretty: true
},
multipass: true
};

View File

@ -0,0 +1 @@
The development of this software is covered by a [Code of Conduct](https://www.mediawiki.org/wiki/Special:MyLanguage/Code_of_Conduct).

339
Vector/COPYING Normal file
View File

@ -0,0 +1,339 @@
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.

36
Vector/Doxyfile Normal file
View File

@ -0,0 +1,36 @@
PROJECT_NAME = Vector
PROJECT_BRIEF = "Vector is a skin for MediaWiki. Vector has been the default skin on all Wikimedia wikis since 2010."
OUTPUT_DIRECTORY = docs
HTML_OUTPUT = php
# Intepret the first line of a comment as a brief description?
JAVADOC_AUTOBRIEF = YES
QT_AUTOBRIEF = YES
WARN_NO_PARAMDOC = YES
INPUT = .
EXCLUDE_PATTERNS = doc docs vendor node_modules tests
FILE_PATTERNS = *.php
# Search through subdirectories for input files?
RECURSIVE = YES
# NOTE: USE_MDFILE_AS_MAINPAGE requires that the specified file is included as an input file.
USE_MDFILE_AS_MAINPAGE = ./README.md
INPUT += ./README.md
HTML_DYNAMIC_SECTIONS = YES
GENERATE_TREEVIEW = YES
TREEVIEW_WIDTH = 250
GENERATE_LATEX = NO
HAVE_DOT = YES
DOT_FONTNAME = Helvetica
DOT_FONTSIZE = 12
TEMPLATE_RELATIONS = YES
# Makes dot run faster. Requires graphviz >1.8.10
DOT_MULTI_TARGETS = YES

53
Vector/README.md Normal file
View File

@ -0,0 +1,53 @@
Vector Skin
========================
Installation
------------
See <https://www.mediawiki.org/wiki/Skin:Vector>.
### Configuration options
See [skin.json](skin.json).
Development
-----------
### Node version
It is recommended to use [nvm](https://github.com/nvm-sh/nvm) to use the version of node defined
in `.nvmrc` during local development. This ensures consistency amongst development environments.
### Coding conventions
We strive for compliance with MediaWiki conventions:
<https://www.mediawiki.org/wiki/Manual:Coding_conventions>
Additions and deviations from those conventions that are more tailored to this
project are noted at:
<https://www.mediawiki.org/wiki/Reading/Web/Coding_conventions>
### Pre-commit tests
A pre-commit hook is installed when executing `npm install`. By default, it runs
`npm test` which is useful for automatically validating everything that can be
in a reasonable amount of time. If you wish to defer these tests to be executed
by continuous integration only, set the `PRE_COMMIT` environment variable to `0`:
```bash
$ export PRE_COMMIT=0
$ git commit
```
Or more succinctly:
```bash
$ PRE_COMMIT=0 git commit
```
Skipping the pre-commit tests has no impact on Gerrit change identifier hooks.
### Hooks
See [hooks.txt](hooks.txt).

View File

@ -0,0 +1,22 @@
[
{
"resourceModule": "skins.vector.styles.legacy",
"maxSize": "8.4 kB"
},
{
"resourceModule": "skins.vector.styles",
"maxSize": "12.2 kB"
},
{
"resourceModule": "skins.vector.legacy.js",
"maxSize": "2.2 kB"
},
{
"resourceModule": "skins.vector.search",
"maxSize": "3.2 kB"
},
{
"resourceModule": "skins.vector.icons",
"maxSize": "1 kB"
}
]

61
Vector/composer.json Normal file
View File

@ -0,0 +1,61 @@
{
"name": "mediawiki/vector-skin",
"type": "mediawiki-skin",
"description": "Modern version of the MonoBook skin",
"keywords": [
"wiki",
"MediaWiki",
"skin"
],
"homepage": "https://www.mediawiki.org/wiki/Skin:Vector",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Trevor Parscal"
},
{
"name": "Roan Kattouw"
}
],
"support": {
"wiki": "https://www.mediawiki.org/wiki/Skin:Vector",
"forum": "https://www.mediawiki.org/wiki/Skin_talk:Vector",
"source": "http://gerrit.wikimedia.org/g/mediawiki/skins/Vector",
"irc": "irc://irc.libera.chat/mediawiki"
},
"require": {
"composer/installers": ">1.0.12"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"installer-name": "Vector"
},
"require-dev": {
"mediawiki/mediawiki-codesniffer": "39.0.0",
"mediawiki/mediawiki-phan-config": "0.11.1",
"mediawiki/minus-x": "1.1.1",
"php-parallel-lint/php-console-highlighter": "1.0.0",
"php-parallel-lint/php-parallel-lint": "1.3.2"
},
"scripts": {
"fix": [
"minus-x fix .",
"phpcbf"
],
"test": [
"parallel-lint . --exclude node_modules --exclude vendor",
"@phpcs",
"minus-x check ."
],
"test:size": "php ../../vendor/phpunit/phpunit/phpunit -c ../../phpunit.xml.dist tests/phpunit/structure/BundleSizeTest.php",
"phan": "phan -d . --long-progress-bar",
"phpcs": "phpcs -sp --cache"
},
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}

View File

@ -0,0 +1,24 @@
#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'
mkdir -p .storybook/resolve-imports/mediawiki.ui
mkdir -p .storybook/resolve-imports/assets
rm -f .storybook/resolve-imports/mediawiki.skin.variables.less
cp resources/mediawiki.less/mediawiki.skin.variables.less .storybook/resolve-imports/
# Fetch resources via curl, `-sSL` silently, Show only errors, Location header and also with a 3XX response code.
curl -sS "https://www.mediawiki.org/w/load.php?only=styles&skin=vector&debug=true&modules=ext.echo.styles.badge|ext.uls.pt|wikibase.client.init|mediawiki.skinning.interface|mediawiki.ui.icon|mediawiki.ui.button" -o .storybook/integration.less
curl -sSL "https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/core/+/master/resources/src/mediawiki.less/mediawiki.skin.defaults.less?format=TEXT" | base64 --decode > .storybook/resolve-imports/mediawiki.skin.defaults.less
curl -sSL "https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/core/+/master/resources/src/mediawiki.less/mediawiki.mixins.less?format=TEXT" | base64 --decode > .storybook/resolve-imports/mediawiki.mixins.less
curl -sSL "https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/core/+/master/resources/src/mediawiki.less/mediawiki.ui/variables.less?format=TEXT" | base64 --decode > .storybook/resolve-imports/mediawiki.ui/variables.less
curl -sSL "https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/core/+/master/resources/src/mediawiki.less/mediawiki.mixins.rotation.less?format=TEXT" | base64 --decode > .storybook/resolve-imports/mediawiki.mixins.rotation.less
curl -sSL "https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/core/+/master/resources/src/mediawiki.less/mediawiki.mixins.animation.less?format=TEXT" | base64 --decode > .storybook/resolve-imports/mediawiki.mixins.animation.less
curl -sS "https://en.m.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg" -o ".storybook/resolve-imports/assets/wordmark.svg"
curl -sS "https://en.m.wikipedia.org/static/images/mobile/copyright/wikipedia.png" -o ".storybook/resolve-imports/assets/icon.png"
curl -sS "https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-tagline-en.svg" -o ".storybook/resolve-imports/assets/tagline.svg"
# Add less variable support
echo "@msg-parentheses-start: '(';" >> .storybook/resolve-imports/mediawiki.skin.defaults.less
echo "@msg-parentheses-end: ')';" >> .storybook/resolve-imports/mediawiki.skin.defaults.less

1
Vector/gitinfo.json Normal file
View File

@ -0,0 +1 @@
{"head": "c81a1413395428c483ac2d6fde668ba1520684e8\n", "headSHA1": "c81a1413395428c483ac2d6fde668ba1520684e8\n", "headCommitDate": "1693464040", "branch": "c81a1413395428c483ac2d6fde668ba1520684e8\n", "remoteURL": "https://gerrit-replica.wikimedia.org/r/mediawiki/skins/Vector"}

24
Vector/i18n/aae.json Normal file
View File

@ -0,0 +1,24 @@
{
"@metadata": {
"authors": [
"Ftillimi",
"Martindimaggio"
]
},
"vector-languages": "Gljuh",
"vector-language-button-label": "{{PLURAL:$1|$1 gljuh}}",
"vector-no-language-button-label": "Vu gnatrë gljuh",
"vector-action-addsection": "Jungir gnë argument",
"vector-action-delete": "Kançilar",
"vector-action-move": "Tunde",
"vector-action-protect": "Mbroj",
"vector-view-create": "Kriar",
"vector-view-history": "Vrej kronologiën",
"vector-more-actions": "Më shurbise",
"vector-searchsuggest-containing": "Kërkoj paginet çë kan <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-toc-label": "Indiçe",
"vector-toc-beginning": "Iniziu",
"vector-page-tools-label": "Strumente",
"vector-page-tools-general-label": "Generali",
"vector-unpin-element-label": "fshihe"
}

21
Vector/i18n/ab.json Normal file
View File

@ -0,0 +1,21 @@
{
"@metadata": {
"authors": [
"Fraxinus.cs",
"Pupsik-ipa",
"Temuri rajavi"
]
},
"vector-languages": "Абызшәақәа",
"vector-language-button-label": "{{PLURAL:$1|$1 абызшәа|$1 абызшәақәа}}",
"vector-no-language-button-label": "Абызшәақәа рыцҵатәуп",
"vector-action-addsection": "Атема ацҵатәуп",
"vector-action-delete": "Ианыхтәуп",
"vector-action-move": "Ахьӡ аԥсахра",
"vector-view-create": "Арҿиара",
"vector-view-edit": "Аредакциазура",
"vector-view-history": "Аҭоурых",
"vector-view-view": "Аԥхьара",
"vector-view-viewsource": "Ахәаԥшра",
"vector-more-actions": "Еиҭа"
}

14
Vector/i18n/abs.json Normal file
View File

@ -0,0 +1,14 @@
{
"@metadata": {
"authors": [
"Anok kutai jang"
]
},
"vector-action-addsection": "Kas tamba baru",
"vector-action-move": "Kas pindah",
"vector-view-create": "Biking",
"vector-view-edit": "Kas ubah",
"vector-view-history": "Lia versi lama",
"vector-view-view": "Baca",
"vector-more-actions": "Laeng-laeng"
}

34
Vector/i18n/ace.json Normal file
View File

@ -0,0 +1,34 @@
{
"@metadata": {
"authors": [
"Fadli Idris",
"Si Gam Acèh"
]
},
"vector-opt-out": "Gantoe u rupa awai",
"vector-languages": "Bahsa",
"vector-language-button-label": "{{PLURAL:$1|$1 bahsa}}",
"vector-no-language-button-label": "Tamah bahsa",
"vector-action-addsection": "Tamah bhaih",
"vector-action-delete": "Sampôh",
"vector-action-move": "Pupinah",
"vector-action-protect": "Peulindông",
"vector-action-undelete": "Bateuë sampôh",
"vector-action-unprotect": "Gantoe neulindông",
"vector-view-create": "Peugöt",
"vector-view-edit": "Peusaneut",
"vector-view-history": "Eu riwayat",
"vector-view-view": "Beuet",
"vector-view-viewsource": "Eu nè",
"vector-more-actions": "Lom",
"vector-searchsuggest-containing": "Mita mieng nyang na <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-toc-label": "Asoe",
"vector-toc-beginning": "Awai",
"vector-page-tools-label": "Alat",
"vector-page-tools-general-label": "Umom",
"vector-page-tools-actions-label": "Buet",
"vector-pin-element-label": "pinah u bateueng binèh",
"vector-unpin-element-label": "som",
"vector-2022-prefs-talkpage": "[[mw:Talk:Reading/Web/Desktop_Improvements|Peugah haba]]",
"tooltip-vector-anon-user-menu-title": "Peuniléh laén"
}

61
Vector/i18n/acm.json Normal file
View File

@ -0,0 +1,61 @@
{
"@metadata": {
"authors": [
"Ahmedadeljaff",
"MRidhaAJ"
]
},
"vector-skin-desc": "توفر نسختين من مظهر فيكتور:\n* 2021 - النسخة الحديثة من مظهر مونوبوك بمظهر أحدث وتحسينات لسهولة الاستخدام.\n* 2022 - نسخة فيكتور المبنيّة كجزءٍ من مشروع مؤسسة ويكيميديا [[mw:Desktop Improvements|لتحسينات نسخة سطح المكتب]].",
"prefs-vector-enable-vector-1-label": "استخدم النسخة القديمة لفيكتور",
"prefs-vector-enable-vector-1-help": "على مدار السنوات القليلة الجاية، راح نحدث واجهة فيكتور بشكل تدريجي. راح تسمحلك النسخة القديمة لفيكتور بمشاهدة الإصدار القديم من فيكتور (اعتبارا من ديسمبر 2019). حتى تعرف بعد على التحديثات، انتقل إلى [[mw:Reading/Web/Desktop_Improvements|صفحة المشروع]].",
"vector-opt-out": "التبديل للشكل القديم",
"vector-opt-out-tooltip": "غيِّر الإعدادات لحتى ترجع إلى طريقة العرض القديمة (النسخة القديمة لفيكتور)",
"vector-action-toggle-sidebar": "تبديل الشريط الجانبي",
"vector-languages": "لغات",
"vector-language-button-aria-label": "{{GENDER:|روح|روحي}} إلى المقالة في لغةٍ ثانية. مُتاحة في {{PLURAL:$1|لغة وحده|هاي اللغات الـ$1}}",
"vector-language-button-label": "{{PLURAL:$1|$1 لغـة|$1 لغـات}}",
"vector-no-language-button-label": "حط لغات",
"vector-no-language-button-aria-label": "هذه المقالة موجودة بس بهاي اللغة. حطها إلى اللغات الثانية.",
"vector-language-redirect-to-top": "في نسخة {{SITENAME}} هاي، وصلات اللغات موجودة في الزاوية الفوك اليسرى يم العنوان. [[#p-lang-btn|انتقل لفوك]].",
"vector-language-variant-switcher-label": "غيّر لهجة اللغة",
"vector-action-addsection": "حط موضوع",
"vector-action-delete": "حذف",
"vector-action-move": "حرك",
"vector-action-protect": "إحمي",
"vector-action-undelete": "استرجع",
"vector-action-unprotect": "غير الحمايه",
"vector-view-create": "سوي",
"vector-view-edit": "تعديل",
"vector-view-history": "شوف التاريخ",
"vector-view-view": "اقرأ",
"vector-view-viewsource": "طلع المصدر",
"vector-jumptonavigation": "اطفر للتنقل",
"vector-jumptosearch": "اطفر للبحث",
"vector-jumptocontent": "اطفر للمحتوى",
"vector-more-actions": "بعد",
"vector-search-loader": "تحميل اقتراحات البحث",
"vector-searchsuggest-containing": "بحث عن صفحات تحوي <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-intro-page": "Help:مقدمة",
"vector-toc-label": "محتوى",
"vector-toc-beginning": "المقدمة",
"vector-toc-toggle-button-label": "ثبِّت القسم الفرعي $1",
"vector-anon-user-menu-pages": "صفحات للمحررين اللي سجَّلوا خروجهم",
"vector-anon-user-menu-pages-learn": "تعلم بعد",
"vector-anon-user-menu-pages-label": "تعلم بعد عالتحرير",
"vector-main-menu-tooltip": "القائمة الرئيسة",
"vector-toc-menu-tooltip": "جدول المحتوى",
"vector-toc-collapsible-button-label": "تبديل عرض جدول المحتوى",
"vector-site-nav-label": "الموقع",
"vector-main-menu-label": "القائمة الرئيسية",
"vector-limited-width-toggle": "تبديل عرض المحتوى المحدود",
"vector-page-tools-label": "عدة",
"vector-page-tools-general-label": "عام",
"vector-page-tools-actions-label": "سوايات",
"vector-pin-element-label": "انقل للشريط الجانبي",
"vector-unpin-element-label": "ضمها",
"vector-2022-prefs-talkpage": "[[mw:Talk:Reading/Web/Desktop_Improvements|مناقشة]]",
"tooltip-vector-anon-user-menu-title": "بعد اختيارات",
"vector-prefs-limited-width": "شعل وضع العرض المحدود",
"vector-prefs-limited-width-help": "فعل وضع العرض المحدود لتجربة قراءة محسنة.",
"empty-language-selector-body": "محتوى الصفحه مو موجود بغير لغات"
}

27
Vector/i18n/ady-cyrl.json Normal file
View File

@ -0,0 +1,27 @@
{
"@metadata": {
"authors": [
"Adamsa123",
"Amire80",
"Celekan",
"GR44 Luc",
"Highlander45temp",
"Inyzh",
"SamGamgee",
"Siklawy",
"SmartNart12"
]
},
"vector-action-addsection": "Ӏофтхьабз",
"vector-action-delete": "ТегъэкӀ",
"vector-action-move": "Хьы",
"vector-action-protect": "Иухъумэ",
"vector-action-undelete": "УмылъэкӀ",
"vector-action-unprotect": "Умыухъумэ",
"vector-view-create": "КъэшӀ",
"vector-view-edit": "ХэӀэзыхь",
"vector-view-history": "Тарихъым eплъ",
"vector-view-view": "Едж",
"vector-view-viewsource": "Еплъ лъапсэм",
"vector-more-actions": "Джыри"
}

22
Vector/i18n/aeb-arab.json Normal file
View File

@ -0,0 +1,22 @@
{
"@metadata": {
"authors": [
"Csisc",
"Meno25",
"Michel Bakni",
"علاء"
]
},
"vector-action-addsection": "أضف موضوعاً",
"vector-action-delete": "احذف",
"vector-action-move": "حوّل",
"vector-action-protect": "احم",
"vector-action-undelete": "استرجع الحذف",
"vector-action-unprotect": "غير الحماية",
"vector-view-create": "أنشئ",
"vector-view-edit": "بدّل",
"vector-view-history": "ورّي الپاج",
"vector-view-view": "أقرا",
"vector-view-viewsource": "عرض المصدر",
"vector-more-actions": "زادة"
}

14
Vector/i18n/aeb-latn.json Normal file
View File

@ -0,0 +1,14 @@
{
"@metadata": {
"authors": [
"Csisc"
]
},
"vector-action-addsection": "Zīd mawḑūģ",
"vector-action-move": "Ḩawwil",
"vector-view-create": "Aģmil",
"vector-view-edit": "Beddil",
"vector-view-history": "Cūf Tērīx il-milaf",
"vector-view-view": "Aqrē",
"vector-more-actions": "Ekŧer"
}

57
Vector/i18n/af.json Normal file
View File

@ -0,0 +1,57 @@
{
"@metadata": {
"authors": [
"Amire80",
"Byeboer",
"Naudefj",
"Rooiratel"
]
},
"prefs-vector-enable-vector-1-label": "Gebruik ou Vector-vel",
"vector-opt-out": "Skakel oor na ou voorkoms",
"vector-action-toggle-sidebar": "Wissel kantbalk",
"vector-languages": "Tale",
"vector-language-button-aria-label": "Gaan na 'n artikel in 'n ander taal. Beskikbaar in {{PLURAL:$1|$1 taal|$1 tale}}",
"vector-language-button-label": "{{PLURAL:$1|$1 taal|$1 tale}}",
"vector-no-language-button-label": "Voeg tale by",
"vector-no-language-button-aria-label": "Hierdie artikel bestaan slegs in hierdie taal. Voeg die artikel by vir ander tale",
"vector-language-redirect-to-top": "Op hierdie {{SITENAME}} is die taalskakels bo-aan die bladsy oorkant die artikeltitel. [[#p-lang-btn|Gaan boontoe]].",
"vector-language-variant-switcher-label": "Verander taalvariant",
"vector-action-addsection": "Nuwe onderwerp",
"vector-action-delete": "Skrap",
"vector-action-move": "Skuif",
"vector-action-protect": "Beskerm",
"vector-action-undelete": "Ontskrap",
"vector-action-unprotect": "Wysig beskerming",
"vector-view-create": "Skep",
"vector-view-edit": "Wysig",
"vector-view-history": "Wys geskiedenis",
"vector-view-view": "Lees",
"vector-view-viewsource": "Wys bronteks",
"vector-jumptonavigation": "Gaan na navigasie",
"vector-jumptosearch": "Gaan na soektog",
"vector-jumptocontent": "Gaan na inhoud",
"vector-more-actions": "Meer",
"vector-search-loader": "Laai tans soekvoorstelle",
"vector-searchsuggest-containing": "Soek vir bladsye wat <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong> bevat",
"vector-intro-page": "Help:Inleiding",
"vector-toc-label": "Inhoud",
"vector-toc-beginning": "Inleiding",
"vector-toc-toggle-button-label": "Wissel $1 subafdeling",
"vector-anon-user-menu-pages": "Bladsye vir uitgemelde redakteurs",
"vector-anon-user-menu-pages-learn": "leer meer",
"vector-anon-user-menu-pages-label": "Leer meer oor redigering",
"vector-main-menu-tooltip": "Hoofkieslys",
"vector-toc-menu-tooltip": "Inhoudsopgawe",
"vector-toc-collapsible-button-label": "Wissel die inhoudsopgawe",
"vector-site-nav-label": "Werf",
"vector-main-menu-label": "Hoofkieslys",
"vector-limited-width-toggle": "Wissel beperkte inhoudwydte",
"vector-page-tools-label": "Gereedskap",
"vector-page-tools-general-label": "Algemeen",
"vector-pin-element-label": "skuif na kantbalk",
"vector-unpin-element-label": "versteek",
"tooltip-vector-anon-user-menu-title": "Meer opsies",
"vector-prefs-limited-width": "Aktiveer beperkte breedte-modus",
"vector-prefs-limited-width-help": "Aktiveer beperkte wydte-modus vir 'n verbeterde lees ervaring."
}

20
Vector/i18n/aln.json Normal file
View File

@ -0,0 +1,20 @@
{
"@metadata": {
"authors": [
"Bresta"
]
},
"vector.css": "/* CSSi i vednosun këtu ka me i prekë shfrytëzuesit e dukjes Vector */",
"vector.js": "/* Çdo JavaScript këtu ka me u ngarkue për shfrytëzuesit që përdorin dukjen Vector */",
"vector-action-addsection": "Shto temë",
"vector-action-delete": "Fshij",
"vector-action-move": "Zhvendos",
"vector-action-protect": "Mbroj",
"vector-action-undelete": "Kthe fshimjen mbrapsht",
"vector-action-unprotect": "Hiq mbrojtjen",
"vector-view-create": "Krijo",
"vector-view-edit": "Redakto",
"vector-view-history": "Shih historinë",
"vector-view-view": "Lexo",
"vector-view-viewsource": "Shih kodin"
}

31
Vector/i18n/alt.json Normal file
View File

@ -0,0 +1,31 @@
{
"@metadata": {
"authors": [
"Agilight",
"Altai uul",
"HalanTul",
"Батыр Комдошев"
]
},
"vector-languages": "Тилдер",
"vector-language-button-label": "{{PLURAL:$1|$1 тил|$1 тилдер}}",
"vector-no-language-button-label": "Тилдер кожоры",
"vector-action-addsection": "Тема кожор",
"vector-action-delete": "Јоголтор",
"vector-action-move": "Адын солыыр",
"vector-action-protect": "Корыыр",
"vector-action-undelete": "Орныктырар",
"vector-action-unprotect": "Корышты солыыр",
"vector-view-create": "Јайалга",
"vector-view-edit": "Тӱзедери",
"vector-view-history": "Тӱӱкини кӧргӱзер",
"vector-view-view": "Кычырар",
"vector-view-viewsource": "Темдектерин кӧрӧр",
"vector-more-actions": "Кӧптӧдӧ",
"vector-searchsuggest-containing": "<strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong> бар бӱктерди бедрери",
"vector-toc-label": "Толынтызы",
"vector-toc-beginning": "Башталганы",
"vector-page-tools-label": "Јепселдер",
"vector-page-tools-general-label": "Текши",
"vector-unpin-element-label": "јажырар"
}

22
Vector/i18n/am.json Normal file
View File

@ -0,0 +1,22 @@
{
"@metadata": {
"authors": [
"Codex Sinaiticus",
"Elfalem",
"Hinstein",
"Teferra"
]
},
"vector-action-addsection": "ርዕስ ጨምር",
"vector-action-delete": "አጥፋ",
"vector-action-move": "ለማዛወር",
"vector-action-protect": "ለመቆለፍ",
"vector-action-undelete": "አታጥፋ",
"vector-action-unprotect": "አለመቆለፍ",
"vector-view-create": "አዲስ ፍጠር",
"vector-view-edit": "አርም",
"vector-view-history": "ታሪኩን አሳይ",
"vector-view-view": "ለማንበብ",
"vector-view-viewsource": "ጥሬ ኮድ ለመመልከት",
"vector-more-actions": "ተጨማሪ"
}

19
Vector/i18n/ami.json Normal file
View File

@ -0,0 +1,19 @@
{
"@metadata": {
"authors": [
"Akamycoco",
"Amire80",
"Vickylin77s"
]
},
"vector-action-addsection": "micomod hasasowalen",
"vector-action-delete": "masopitay to",
"vector-action-move": "malinah",
"vector-action-protect": "midipot",
"vector-view-create": "misanga",
"vector-view-edit": "misinanot",
"vector-view-history": "misongila a minengneng to likisi",
"vector-view-view": "miasip",
"vector-view-viewsource": "misongila a minengneng to yin-se-ma",
"vector-more-actions": "matongal ko adihay"
}

23
Vector/i18n/an.json Normal file
View File

@ -0,0 +1,23 @@
{
"@metadata": {
"authors": [
"Carlos Cristia",
"Juanpabl"
]
},
"skinname-vector": "Vector",
"vector.css": "/* Os estilos CSS colocaus aquí s'aplicarán ta totz os usuarios que faigan servir l'apariencia Vector */",
"vector.js": "/* Qualsiquier codigo Javascript escrito aquí se cargará ta totz os usuarios que usen a piel Vector */",
"vector-action-addsection": "Adhibir nueva sección",
"vector-action-delete": "Borrar",
"vector-action-move": "Tresladar",
"vector-action-protect": "Protecher",
"vector-action-undelete": "Restaurar",
"vector-action-unprotect": "Cambiar protección",
"vector-view-create": "Creyar",
"vector-view-edit": "Editar",
"vector-view-history": "Amostrar l'historial",
"vector-view-view": "Leyer",
"vector-view-viewsource": "Veyer o codigo fuent",
"vector-more-actions": "Mas"
}

23
Vector/i18n/ang.json Normal file
View File

@ -0,0 +1,23 @@
{
"@metadata": {
"authors": [
"Gott wisst",
"Heahwrita",
"Hogweard",
"JJohnson1701"
]
},
"vector-action-addsection": "Besettan mearcunge",
"vector-action-delete": "Forleos",
"vector-action-move": "Wegan",
"vector-action-protect": "Beorgan",
"vector-action-undelete": "Scieppan tramet eft",
"vector-action-unprotect": "Andwendan beorgunge",
"vector-view-create": "Scieppan",
"vector-view-edit": "Adiht",
"vector-view-history": "Seoh stær",
"vector-view-view": "Ræd",
"vector-view-viewsource": "Sēon fruman",
"vector-more-actions": "Ma",
"vector-main-menu-label": "Heafodlic cyrewrit"
}

24
Vector/i18n/ann.json Normal file
View File

@ -0,0 +1,24 @@
{
"@metadata": {
"authors": [
"Katelem"
]
},
"vector-languages": "Ebi kè Usem",
"vector-no-language-button-label": "Tap usem sọkọ",
"vector-action-addsection": "Tap Ibot-ikọ gbaalek",
"vector-action-delete": "Chọk",
"vector-action-move": "Nwene erieen̄",
"vector-action-protect": "Bem",
"vector-view-create": "Nama",
"vector-view-edit": "Nen̄e ge",
"vector-view-history": "Kpọ mfufuk",
"vector-view-view": "Fuk",
"vector-more-actions": "Ofifi si",
"vector-searchsuggest-containing": "Wèek ebi kè akpọk ìkakaan̄ <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-toc-label": "Òkup me emen",
"vector-toc-beginning": "Ibebene",
"vector-page-tools-label": "Nroon̄",
"vector-page-tools-general-label": "Eyi otutuuk",
"vector-unpin-element-label": "let"
}

57
Vector/i18n/anp.json Normal file
View File

@ -0,0 +1,57 @@
{
"@metadata": {
"authors": [
"Angpradesh",
"Proabscorp!"
]
},
"vector-skin-desc": "दू Vector स्किन्स प्रदान करै छै:\n* 2011 - MonoBook क आधुनिक संस्करण जेकरा मँ एगो टटका दिखावट आरो उपयोग मँ सुधार छै।\n* 2022 - Vector जेकरा विकिमीडिया संस्थान केरौ [[mw:Desktop Improvements|डेस्कटॉप उन्नति]] परियोजना के रूप मँ बनैलौ गेलौ छै।",
"prefs-vector-enable-vector-1-label": "लिगेसी Vector क उपयोग करौ",
"vector-opt-out": "पुरनका दिखावट प जा",
"vector-action-toggle-sidebar": "साइडबार क टॉगल करौ",
"vector-languages": "भाषा सिनी",
"vector-language-button-label": "{{PLURAL:$1|$1 भाषा|$1 भाषा सिनी}}",
"vector-no-language-button-label": "भाषा सिनी जोड़ौ",
"vector-language-redirect-to-top": "हैय {{SITENAME}} प भाषा केरौ कड़ी सिनी पन्ना के ऊप्पर क ओरी लेख केरौ शीर्षक क पास छौं। [[#p-lang-btn|ऊप्पर जा]]।",
"vector-language-variant-switcher-label": "भाषा केरौ प्रकार बदलौ",
"vector-action-addsection": "विषय जोड़ौ",
"vector-action-delete": "मेटाबौ",
"vector-action-move": "स्थानांतरित करौ",
"vector-action-protect": "सुरक्षित करौ",
"vector-action-undelete": "हटाना वापस ला",
"vector-action-unprotect": "सुरक्षितता बदलौ",
"vector-view-create": "बनाबौ",
"vector-view-edit": "संपादन करौ",
"vector-view-history": "इतिहास देखौ",
"vector-view-view": "पढ़ौ",
"vector-view-viewsource": "स्रोत देखौ",
"vector-jumptonavigation": "नेविगेशन प जा",
"vector-jumptosearch": "खोज प जा",
"vector-jumptocontent": "सामग्री प जा",
"vector-more-actions": "आरू जादा",
"vector-search-loader": "खोज सुझाव लोड होय रहलौ छौ",
"vector-searchsuggest-containing": "<strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong> सँ जुड़लो पन्ना खोजौ",
"vector-intro-page": "Help:परिचय",
"vector-toc-label": "विषय सूची",
"vector-toc-beginning": "शुरुआत",
"vector-toc-toggle-button-label": "$1 उप-अनुभाग क टॉगल करौ",
"vector-anon-user-menu-pages": "लॉग-आउट करलौ गेलौ संपादक सिनी लेली पन्ना",
"vector-anon-user-menu-pages-learn": "आरू अधिक जानौ",
"vector-anon-user-menu-pages-label": "संपादन केरौ बारै मँ अधिक जानौ",
"vector-main-menu-tooltip": "मुख्य सूची",
"vector-toc-menu-tooltip": "विषयसूची",
"vector-toc-collapsible-button-label": "विषयसूची क टॉगल करौ",
"vector-site-nav-label": "साइट",
"vector-main-menu-label": "मुख्य सूची",
"vector-limited-width-toggle": "सीमित सामग्री के चौड़ाई क टॉगल करौ",
"vector-page-tools-label": "उपकरण",
"vector-page-tools-general-label": "सामान्य",
"vector-page-tools-actions-label": "कार्रवाई",
"vector-pin-element-label": "साइडबार प जा",
"vector-unpin-element-label": "नुकाबौ",
"vector-2022-prefs-talkpage": "[[mw:Talk:Reading/Web/Desktop_Improvements|चर्चा]]",
"tooltip-vector-anon-user-menu-title": "अन्य विकल्प सिनी",
"vector-prefs-limited-width": "सीमित चौड़ाई मोड सक्षम करौ",
"vector-prefs-limited-width-help": "बेहतर पठन अनुभव लेली सीमित चौड़ाई मोड सक्षम करौ।",
"empty-language-selector-body": "पृष्ठ सामग्री अन्य भाषा सिनी मँ समर्थित नाय छौं।"
}

87
Vector/i18n/ar.json Normal file
View File

@ -0,0 +1,87 @@
{
"@metadata": {
"authors": [
"Abanima",
"Amire80",
"Bachounda",
"Beginneruser",
"Calak",
"Dyolf77 (WMF)",
"FShbib",
"Khaled",
"Meno25",
"Michel Bakni",
"Mido",
"NEHAOUA",
"OsamaK",
"Shbib Al-Subaie",
"Wahrani",
"أحمد",
"ديفيد",
"زكريا",
"علاء",
"محمد أحمد عبد الفتاح",
"MRidhaAJ",
"Alshamiri1",
"Hubaishan",
"أيوب"
]
},
"skinname-vector": "فكتور القديم (2010)",
"skinname-vector-2022": "فيكتور (2022)",
"vector-skin-desc": "توفر نسختان من مظهر فيكتور:\n* 2021 - النسخة الحديثة من مظهر مونوبوك بمظهر أحدث وتحسينات لسهولة الاستخدام.\n* 2022 - نسخة فيكتور المبنيّة كجزءٍ من مشروع مؤسسة ويكيميديا [[mw:Desktop Improvements|لتحسينات نسخة سطح المكتب]].",
"prefs-vector-enable-vector-1-label": "استخدم النسخة القديمة لفيكتور",
"prefs-vector-enable-vector-1-help": "على مدار السنوات القليلة القادمة، سنقوم بتحديث واجهة فيكتور بشكل تدريجي. ستسمح لك النسخة القديمة لفيكتور بمشاهدة الإصدار القديم من فيكتور (اعتبارا من ديسمبر 2019). لمعرفة المزيد حول التحديثات، انتقل إلى [[mw:Reading/Web/Desktop_Improvements|صفحة المشروع]].",
"vector-opt-out": "التبديل إلى الشكل القديم",
"vector-opt-out-tooltip": "غيِّر الإعدادت للعودة إلى طريقة العرض القديمة (النسخة القديمة لفيكتور)",
"vector.css": "/* ستؤثِّر الأنماط المتراصة CSS المعروضة هنا على مستخدمي واجهة فكتور */",
"vector.js": "/* سيُحمَّل أي نص برمجي مكتوب بلغة جافا للمستخدمين الذين يستعملون واجهة فكتور */",
"vector-action-toggle-sidebar": "تبديل الشريط الجانبي",
"vector-languages": "لغات",
"vector-language-button-aria-label": "{{GENDER:|اذهب|اذهبي}} إلى المقالة في لغةٍ أخرى. مُتاحة في {{PLURAL:$1|لا لغة|لغة واحدة|لغتين|$1 لغات|$1 لغة}}",
"vector-language-button-label": "{{PLURAL:$1|لا لغات|لغة واحدة|لغتان|$1 لغات|$1 لغة}}",
"vector-no-language-button-label": "أضف لغات",
"vector-no-language-button-aria-label": "هذه المقالة تتواجد فقط في هذه اللغة. أضفها إلى اللغات الأخرى.",
"vector-language-redirect-to-top": "في نسخة {{SITENAME}} هذه، وصلات اللغات موجودة في الزاوية العليا اليسرى بجانب العنوان. [[#p-lang-btn|انتقل إلى الأعلى]].",
"vector-language-variant-switcher-label": "غيّر لهجة اللغة",
"vector-action-addsection": "أضف موضوعًا",
"vector-action-delete": "احذف",
"vector-action-move": "انقُل",
"vector-action-protect": "احمِ",
"vector-action-undelete": "ألغِ الحذف",
"vector-action-unprotect": "غيِّر الحماية",
"vector-view-create": "أنشئ",
"vector-view-edit": "عدِّل",
"vector-view-history": "تاريخ",
"vector-view-view": "اقرأ",
"vector-view-viewsource": "اعرض المصدر",
"vector-jumptonavigation": "اذهب إلى التنقل",
"vector-jumptosearch": "اذهب إلى البحث",
"vector-jumptocontent": "انتقل إلى المحتوى",
"vector-more-actions": "المزيد",
"vector-search-loader": "تحميل اقتراحات البحث",
"vector-searchsuggest-containing": "ابحث عن صفحات تحتوي <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-intro-page": "Help:مقدمة",
"vector-toc-label": "المحتويات",
"vector-toc-beginning": "المقدمة",
"vector-toc-toggle-button-label": "ثبِّت القسم الفرعي $1",
"vector-anon-user-menu-pages": "صفحات للمحررين الذين سجَّلوا خروجهم",
"vector-anon-user-menu-pages-learn": "تعلَّم المزيد",
"vector-anon-user-menu-pages-label": "تعلَّم المزيد بخصوص التحرير",
"vector-main-menu-tooltip": "القائمة الرئيسة",
"vector-toc-menu-tooltip": "جدول المحتويات",
"vector-toc-collapsible-button-label": "تبديل عرض جدول المحتويات",
"vector-site-nav-label": "الموقع",
"vector-main-menu-label": "القائمة الرئيسية",
"vector-limited-width-toggle": "تبديل عرض المحتوى المحدود",
"vector-page-tools-label": "أدوات",
"vector-page-tools-general-label": "عام",
"vector-page-tools-actions-label": "إجراءات",
"vector-pin-element-label": "انقل للشريط الجانبي",
"vector-unpin-element-label": "أخف",
"vector-2022-prefs-talkpage": "[[mw:Talk:Reading/Web/Desktop_Improvements|نقاش]]",
"tooltip-vector-anon-user-menu-title": "المزيد من الخيارات",
"vector-prefs-limited-width": "تفعيل وضع العرض المحدود",
"vector-prefs-limited-width-help": "قم بتمكين وضع العرض المحدود لتجربة قراءة محسنة.",
"empty-language-selector-body": "محتويات الصفحة غير مدعومة بلغات أخرى."
}

20
Vector/i18n/arc.json Normal file
View File

@ -0,0 +1,20 @@
{
"@metadata": {
"authors": [
"334a",
"Basharh",
"Michaelovic"
]
},
"vector-action-addsection": "ܐܘܣܦ ܡܠܘܐܐ",
"vector-action-delete": "ܫܘܦ",
"vector-action-move": "ܫܢܝ",
"vector-action-protect": "ܛܪ",
"vector-action-undelete": "ܠܐ ܫܘܦ",
"vector-action-unprotect": "ܫܚܠܦ ܢܛܝܪܘܬܐ",
"vector-view-create": "ܒܪܝ",
"vector-view-edit": "ܫܚܠܦ",
"vector-view-history": "ܚܙܝ ܬܫܥܝܬܐ",
"vector-view-view": "ܩܪܝ",
"vector-view-viewsource": "ܚܙܝ ܡܒܘܥܐ"
}

23
Vector/i18n/arn.json Normal file
View File

@ -0,0 +1,23 @@
{
"@metadata": {
"authors": [
"Clerc",
"Fiestoforo",
"Manke ruLpa"
]
},
"vector-language-button-label": "{{PLURAL:$1|$1 zugun}}",
"vector-action-addsection": "Püñamtun zungu",
"vector-action-delete": "Liftun",
"vector-action-move": "Nengümün",
"vector-action-protect": "Nürüfkünun",
"vector-action-undelete": "Wüñoñamümün",
"vector-action-unprotect": "Kalekünun Nürüfkünun",
"vector-view-create": "Zewman",
"vector-view-edit": "Kümeelün",
"vector-view-history": "Pengepe tukulpan",
"vector-view-view": "Chillkatun",
"vector-view-viewsource": "Kimam chew küpan chi wirin",
"vector-more-actions": "Zoy",
"vector-searchsuggest-containing": "Kintun kom tapülh nielu <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>"
}

8
Vector/i18n/aro.json Normal file
View File

@ -0,0 +1,8 @@
{
"@metadata": {
"authors": [
"Ooswesthoesbes"
]
},
"vector-view-edit": "Imeakie"
}

22
Vector/i18n/arq.json Normal file
View File

@ -0,0 +1,22 @@
{
"@metadata": {
"authors": [
"Bachounda",
"GeekEmad",
"Oldstoneage"
]
},
"vector-skin-desc": "طبعة جديدة تاع مونوبوك، ب شبحة جديدة و تحسانات فل إستعماليّة",
"vector-action-addsection": "زيد موضوع",
"vector-action-delete": "امحي",
"vector-action-move": "حول",
"vector-action-protect": "بروجي",
"vector-action-undelete": "ردّ كيما كان",
"vector-action-unprotect": "بدّل الـحماية",
"vector-view-create": "أصنع",
"vector-view-edit": "بدّل",
"vector-view-history": "شوف التاريخ",
"vector-view-view": "اقرى",
"vector-view-viewsource": "شوف المصدر",
"vector-more-actions": "اكثر"
}

30
Vector/i18n/ary.json Normal file
View File

@ -0,0 +1,30 @@
{
"@metadata": {
"authors": [
"Abdeaitali",
"Amire80",
"Enzoreg",
"Ideophagous",
"Reda Benkhadra",
"SADI9I",
"SADIQUI",
"Zanatos"
]
},
"vector-opt-out": "رجع ل الشكل لقديم",
"vector-language-button-label": "{{PLURAL:$1|$1 لوغة|$1 لوغات}}",
"vector-language-redirect-to-top": "ف هاد لويكيپيديا ليانات د لوغات كاينين ف لفوق د صفحة حدا لعنوان. [[#p-lang-btn|سير لفوق]].",
"vector-action-addsection": "زيد شي موضوع",
"vector-action-delete": "محي",
"vector-action-move": "حوّل",
"vector-action-protect": "حمي",
"vector-action-undelete": "لغي الحدف",
"vector-action-unprotect": "بدّل الحماية",
"vector-view-create": "أنشئ",
"vector-view-edit": "بدل",
"vector-view-history": "تاريخ",
"vector-view-view": "قرا",
"vector-view-viewsource": "شوف لمصدر",
"vector-more-actions": "كتر",
"vector-searchsuggest-containing": "قلب علا صفاحي فيهم <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>"
}

24
Vector/i18n/arz.json Normal file
View File

@ -0,0 +1,24 @@
{
"@metadata": {
"authors": [
"Ghaly",
"Meno25",
"Ramsis II"
]
},
"vector.css": "/* CSS اللى هنا حتأثر على اليوزرز اللى بيستخدموا واجهة فكتور */",
"vector.js": "/* اى جافاسكريبت هنا حتتحمل لكل يوزر بيستخدم واجهة فكتور */",
"vector-language-button-label": "{{PLURAL:$1|$1 لغه|$1 لغات}}",
"vector-action-addsection": "ضيف موضوع",
"vector-action-delete": "مسح",
"vector-action-move": "نقل",
"vector-action-protect": "حمايه",
"vector-action-undelete": "الغى المسح",
"vector-action-unprotect": "غير الحمايه",
"vector-view-create": "اعمل",
"vector-view-edit": "تعديل",
"vector-view-history": "استعراض التاريخ",
"vector-view-view": "قرايه",
"vector-view-viewsource": "استعراض المصدر",
"vector-more-actions": "اكتر"
}

69
Vector/i18n/as.json Normal file
View File

@ -0,0 +1,69 @@
{
"@metadata": {
"authors": [
"Amire80",
"Bishnu Saikia",
"Chaipau",
"Gitartha.bordoloi",
"Simbu123"
]
},
"skinname-vector": "পুৰণা ভেক্টৰ (২০১০)",
"skinname-vector-2022": "ভেক্টৰ (২০২২)",
"vector-specialversion-name": "ভেক্টৰ",
"vector-skin-desc": "২টা ভেক্টৰ ৰূপ প্ৰদান কৰে:\n* ২০১১ - নতুন ৰূপ আৰু বহুতো ব্যৱহাৰযোগ্যতাৰ উন্নতিৰ সৈতে ম'ন'বুকৰ আধুনিক সংস্কৰণ।\n* ২০২২ - WMF-ৰ [[mw:Desktop Improvements]] প্ৰকল্পৰ অংশ হিচাপে নিৰ্মিত ভেক্টৰ।",
"prefs-vector-enable-vector-1-label": "পুৰণা ভেক্টৰ ব্যৱহাৰ কৰক",
"prefs-vector-enable-vector-1-help": "পৰৱৰ্তী কেইবছৰমানত, আমি ক্ৰমান্বয়ে ভেক্টৰ আৱৰণ আপডেট কৰিম। পুৰণা ভেক্টৰ আৱৰণে আপোনাক ভেক্টৰৰ পুৰণি সংস্কৰণ চাবলৈ অনুমতি দিব (ডিচেম্বৰ ২০১৯ লৈকে)। আপডেটবোৰৰ বিষয়ে অধিক জানিবলৈ, আমাৰ [[mw:Reading/Web/Desktop_Improvements|প্ৰকল্প পৃষ্ঠালৈ]] যাওক।",
"vector-opt-out": "পুৰণি ৰূপলৈ যাওক",
"vector-opt-out-tooltip": "আৱৰণৰ পুৰণি ৰূপলৈ ঘূৰি যাবলৈ আপোনাৰ ছেটিংছ সলনি কৰক (পুৰণা ভেক্টৰ)",
"vector.css": "/* ভেক্টৰ আৱৰণৰ ব্যৱহাৰকাৰীসকলৰ বাবে ইয়াত সকলো CSS লোড কৰা হ'ব */",
"vector.js": "/* ভেক্টৰ আৱৰণৰ ব্যৱহাৰকাৰীসকলৰ বাবে ইয়াত সকলো জাভাস্ক্ৰিপ্ট লোড কৰা হ'ব */",
"vector-action-toggle-sidebar": "পাৰ্শ্বদণ্ড টগ'ল কৰক",
"vector-languages": "ভাষা",
"vector-language-button-aria-label": "অন্য এটা ভাষাৰ প্ৰবন্ধলৈ যাওক। {{PLURAL:$1|$1টা ভাষাত}} উপলব্ধ।",
"vector-language-button-label": "{{PLURAL:$1|$1টা ভাষা}}",
"vector-no-language-button-label": "ভাষা যোগ কৰক",
"vector-no-language-button-aria-label": "এই প্ৰবন্ধটো কেৱল এই ভাষাতহে আছে। অন্য ভাষাত প্ৰবন্ধটো যোগ কৰক",
"vector-language-redirect-to-top": "এই {{SITENAME}}ত ভাষাৰ সংযোগসমূহ প্ৰবন্ধৰ শিৰোনামৰ কাষত পৃষ্ঠাৰ ওপৰত আছে। [[#p-lang-btn|ওপৰলৈ যাওক]]।",
"vector-language-variant-switcher-label": "ভাষাৰ প্ৰকাৰ সলনি কৰক",
"vector-action-addsection": "বিষয় যোগ",
"vector-action-delete": "বিলোপ কৰক",
"vector-action-move": "স্থানান্তৰ কৰক",
"vector-action-protect": "সুৰক্ষিত কৰক",
"vector-action-undelete": "পুনৰুদ্ধাৰ কৰক",
"vector-action-unprotect": "সুৰক্ষা সলনি কৰক",
"vector-view-create": "সৃষ্টি কৰক",
"vector-view-edit": "সম্পাদনা",
"vector-view-history": "ইতিহাস চাওক",
"vector-view-view": "পঢ়ক",
"vector-view-viewsource": "উৎস চাওক",
"vector-jumptonavigation": "নেভিগেশ্যনলৈ যাওক",
"vector-jumptosearch": "সন্ধানলৈ যাওক",
"vector-jumptocontent": "সমললৈ যাওক",
"vector-more-actions": "অধিক",
"vector-search-loader": "সন্ধান পৰামৰ্শ লোড কৰা হৈছে",
"vector-searchsuggest-containing": "<strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong> থকা পৃষ্ঠাসমূহ সন্ধান কৰক",
"vector-intro-page": "Help:পৰিচয়",
"vector-toc-label": "সূচী",
"vector-toc-beginning": "পাতনি",
"vector-toc-toggle-button-label": "$1 উপ-অনুচ্ছেদ টগ'ল কৰক",
"vector-anon-user-menu-pages": "লগ-আউট কৰা সদস্যৰ বাবে পৃষ্ঠাসমূহ",
"vector-anon-user-menu-pages-learn": "অধিক শিকক",
"vector-anon-user-menu-pages-label": "সম্পাদনাৰ বিষয়ে অধিক জানক",
"vector-main-menu-tooltip": "মুখ্য মেনু",
"vector-toc-menu-tooltip": "সূচীপত্ৰ",
"vector-toc-collapsible-button-label": "সূচীপত্ৰ টগ'ল কৰক",
"vector-site-nav-label": "ছাইট",
"vector-main-menu-label": "মুখ্য মেনু",
"vector-limited-width-toggle": "সীমিত সমলৰ প্ৰস্থ টগ'ল কৰক",
"vector-page-tools-label": "সঁজুলি",
"vector-page-tools-general-label": "সাধাৰণ",
"vector-page-tools-actions-label": "কাৰ্যসমূহ",
"vector-pin-element-label": "পাৰ্শ্বদণ্ডলৈ যাওক",
"vector-unpin-element-label": "লুকুৱাওক",
"vector-2022-prefs-talkpage": "[[mw:Talk:Reading/Web/Desktop_Improvements|আলোচনা]]",
"tooltip-vector-anon-user-menu-title": "অধিক বিকল্প",
"vector-prefs-limited-width": "সীমিত প্ৰস্থ অৱস্থা সক্ষম কৰক",
"vector-prefs-limited-width-help": "পঠনৰ উত্তম অভিজ্ঞতাৰ বাবে সীমিত প্ৰস্থ অৱস্থা সক্ষম কৰক।",
"empty-language-selector-body": "এই পৃষ্ঠাৰ সমল অন্য ভাষাত সমৰ্থিত নহয়।"
}

23
Vector/i18n/ase.json Normal file
View File

@ -0,0 +1,23 @@
{
"@metadata": {
"authors": [
"Icemandeaf"
]
},
"skinname-vector": "M509x575S10e20494x425S14a20493x459S16d20492x478S1fb20494x502S17620493x525S11a20493x545",
"vector-skin-desc": "M535x520S19a00507x481S19a08465x481S22f14465x506S22f04509x506 M515x598S18d20494x403S17620499x432S11920493x452S17620499x482S14720500x502S17620499x528S17620499x548S14020485x568 M521x508S1f748479x493S1f740501x493 M532x517S15a16505x505S2880f468x484S20e00491x495S1821d503x492 M534x547S2ff00482x483S10001513x517S2e305488x487 S38700463x496 M535x536S20300516x521S20308470x521S26500516x502S26510470x502S14c30511x465S14c38465x465 M526x522S15a56499x510S11520503x479S20e00489x496S26a02474x489 M520x540S37606481x460S15a40508x513S28801499x491S20500488x492",
"vector.css": "/* M509x529S16d20492x471S20320493x495S20320493x514 M535x523S14c50508x492S14c58469x492S22520503x477S22520465x477 M525x525S10004510x475S22a04511x510S1000c476x475S22a14477x510 M534x518S2ff00482x483S15a10522x486S2b700514x458 M521x532S10609498x496S10621487x512S21100500x483S2df20479x468 M526x522S15a56499x510S11520503x479S20e00489x496S26a02474x489 M521x508S1f748479x493S1f740501x493 M509x575S10e20494x425S14a20493x459S16d20492x478S1fb20494x502S17620493x525S11a20493x545 M517x524S15a02484x477S15a20489x484S21100504x492S22a04504x509 */",
"vector.js": "/* M520x523S1f540480x477S2a204497x495 M519x527S19220498x489S2a20c482x473S20320498x512 M525x525S10004510x475S22a04511x510S1000c476x475S22a14477x510 M534x518S2ff00482x483S15a10522x486S2b700514x458 M524x539S14402493x485S1440a486x461S22b00508x509S22b10476x483 M536x521S2ff00482x483S10011515x491S28108515x461 M526x522S15a56499x510S11520503x479S20e00489x496S26a02474x489 M509x575S10e20494x425S14a20493x459S16d20492x478S1fb20494x502S17620493x525S11a20493x545 M517x524S15a02484x477S15a20489x484S21100504x492S22a04504x509 */",
"vector-action-addsection": "M532x517S15a16505x505S2880f468x484S20e00491x495S1821d503x492 M522x522S15a37478x479S10041485x492S20600500x492",
"vector-action-delete": "M527x532S1ea40473x511S1f540512x478S22a07497x504S2f700512x468",
"vector-action-move": "M552x509S18520488x494S18528449x494S26626522x492",
"vector-action-protect": "M512x519S15a19488x482S15a11489x482S20600488x508",
"vector-action-undelete": "M515x538S15a0a486x463S10050500x467S2330b485x516S20e00491x501 M527x532S1ea40473x511S1f540512x478S22a07497x504S2f700512x468",
"vector-action-unprotect": "M521x532S10609498x496S10621487x512S21100500x483S2df20479x468 M512x519S15a19488x482S15a11489x482S20600488x508",
"vector-view-create": "M532x519S20302493x485S2030a489x502S21100509x504S26900516x482S26910468x501",
"vector-view-edit": "M521x532S10609498x496S10621487x512S21100500x483S2df20479x468",
"vector-view-history": "M525x524S2ff00482x483S10e00507x494S26500511x474 M514x523S11541487x478S22f04489x509",
"vector-view-view": "M513x540S15a06486x459S10e50494x474S22b04493x510",
"vector-view-viewsource": "M525x524S2ff00482x483S10e00507x494S26500511x474 M509x545S16d20492x456S17620493x480S10120493x497S14a20494x530",
"vector-more-actions": "M526x508S18510501x493S18518475x493"
}

38
Vector/i18n/ast.json Normal file
View File

@ -0,0 +1,38 @@
{
"@metadata": {
"authors": [
"Esbardu",
"Tokvo",
"Xuacu",
"Fueyas"
]
},
"skinname-vector": "Vector",
"vector-skin-desc": "Versión moderna de MonoBook, con un aspeutu frescu y munchos ameyoramientos d'usabilidá",
"prefs-vector-enable-vector-1-label": "Utilizar versión anticuada de Vector",
"vector.css": "/* Los CSS allugaos equí afeutarán a los usuarios del aspeutu Vector */",
"vector.js": "/* Cualesquier JavaScript que tea equí se cargará pa los usuarios del aspeutu Vector */",
"vector-languages": "Llingües",
"vector-language-button-label": "{{PLURAL:$1|$1 llingua|$1 llingües}}",
"vector-no-language-button-label": "Añedir llingües",
"vector-action-addsection": "Amestar seición",
"vector-action-delete": "Desaniciar",
"vector-action-move": "Treslladar",
"vector-action-protect": "Protexer",
"vector-action-undelete": "Restaurar",
"vector-action-unprotect": "Camudar la proteición",
"vector-view-create": "Crear",
"vector-view-edit": "Editar",
"vector-view-history": "Ver historial",
"vector-view-view": "Lleer",
"vector-view-viewsource": "Ver fonte",
"vector-jumptonavigation": "Saltar a navegación",
"vector-jumptosearch": "Saltar a la gueta",
"vector-more-actions": "Más",
"vector-searchsuggest-containing": "Busca páxines que contengan <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-toc-label": "Conteníu",
"vector-toc-beginning": "Entamu",
"vector-page-tools-label": "Ferramientes",
"vector-page-tools-general-label": "Xeneral",
"vector-unpin-element-label": "despintar"
}

18
Vector/i18n/atj.json Normal file
View File

@ -0,0 +1,18 @@
{
"@metadata": {
"authors": [
"Amqui",
"Benoit Rochon",
"Jean-paul echaquan"
]
},
"vector-action-addsection": "Acotcicta",
"vector-action-delete": "Wepina",
"vector-action-move": "Erikam",
"vector-view-create": "Ocita",
"vector-view-edit": "Meckotcita",
"vector-view-history": "E pe isparik",
"vector-view-view": "Tapwatcike",
"vector-view-viewsource": "Nte ici nta kanawapata e otciparik",
"vector-more-actions": "Erikam"
}

25
Vector/i18n/av.json Normal file
View File

@ -0,0 +1,25 @@
{
"@metadata": {
"authors": [
"Gazimagomedov",
"Omarov M.",
"Умар"
]
},
"vector-skin-desc": "Бихьизабула 2 векторияб скин:\n* 2011 - The Modern version of MonoBook with fresh look and many usability improvements.\n* 2022 - The Vector built as part of the WMF [[mw:Desktop Improvements]] project.",
"vector-opt-out": "Басрияб куцалде бачине",
"vector-languages": "МацӀал",
"vector-language-button-label": "{{PLURAL:$1|$1 мацӀ}}",
"vector-action-addsection": "Тема жубазе",
"vector-action-delete": "Гилдизабизе",
"vector-action-move": "ЦӀар хисизе",
"vector-action-protect": "ЦӀунизе",
"vector-action-undelete": "БукӀахъинабизе",
"vector-action-unprotect": "ЦӀуни хисизе",
"vector-view-create": "ГIуцIизе",
"vector-view-edit": "Хисизабизе",
"vector-view-history": "Тарихалъухъ ралагьизе",
"vector-view-view": "ЦӀализе",
"vector-view-viewsource": "Кодалъухъ ралагьизе",
"vector-more-actions": "Жеги"
}

18
Vector/i18n/avk.json Normal file
View File

@ -0,0 +1,18 @@
{
"@metadata": {
"authors": [
"Axel xadolik",
"Wikimistusik"
]
},
"vector-action-addsection": "Loplekura va detce",
"vector-action-delete": "Sulara",
"vector-action-move": "Arrundara",
"vector-action-protect": "Nendara",
"vector-view-create": "Redura",
"vector-view-edit": "Betara",
"vector-view-history": "Wira va izvot",
"vector-view-view": "Belira",
"vector-view-viewsource": "klitawira",
"vector-more-actions": "Loon"
}

19
Vector/i18n/awa.json Normal file
View File

@ -0,0 +1,19 @@
{
"@metadata": {
"authors": [
"1AnuraagPandey"
]
},
"vector-action-addsection": "शिर्षक जोडा जाय",
"vector-action-delete": "मेटावा जाय",
"vector-action-move": "घुस्कावा जाय",
"vector-action-protect": "सुरक्षित करा जाय",
"vector-action-undelete": "हटाइब वापस लिहा जाय",
"vector-action-unprotect": "सुरक्षा परिवर्तन करा जाय",
"vector-view-create": "बनावा जाय",
"vector-view-edit": "सम्पादन",
"vector-view-history": "इतिहास देखा जाय",
"vector-view-view": "पढा जाय",
"vector-view-viewsource": "स्रोत देखा जाय",
"vector-more-actions": "अउर"
}

73
Vector/i18n/az.json Normal file
View File

@ -0,0 +1,73 @@
{
"@metadata": {
"authors": [
"AZISS",
"Arystanbek",
"Gulmammad",
"NMW03",
"Sortilegus",
"Toghrul Rahimli",
"Vago",
"Vugar 1981",
"Wertuose"
]
},
"skinname-vector": "Köhnə Vektor (2010)",
"skinname-vector-2022": "Vektor (2022)",
"vector-specialversion-name": "Vektor",
"vector-skin-desc": "2 Vektor dizaynı təqdim edir:\n* 2011 - MonoBook-un təzə görünüşü və bir çox istifadəyə yararlılıq təkmilləşdirmələri ilə Müasir versiyası.\n* 2022 - WMF [[mw:Desktop Improvements]] layihəsinin bir hissəsi kimi yaradılmış Vektor.",
"prefs-vector-enable-vector-1-label": "Legacy Vector istifadə edin",
"prefs-vector-enable-vector-1-help": "Növbəti bir neçə il ərzində Vector dizaynını tədricən yeniləyəcəyik. Legacy Vector, Vector-un köhnə versiyasına baxmağa imkan verəcəkdir (dekabr 2019-cu ildən etibarən). Yeniləmələr haqqında daha çox məlumat üçün [[mw:Reading/Web/Desktop_Improvements|layihə səhifəmizə]] nəzər yetirin.",
"vector-opt-out": "Əvvəlki dizayna keç",
"vector-opt-out-tooltip": "Köhnə dizayna qayıtmaq üçün parametrlərinizi dəyişdirin (köhnə Vektor)",
"vector.css": "/* Buradakı CSS kodu Vektor istifadəçiləri üçün yüklənəcək */",
"vector.js": "/* Buradakı JavaScript kodu Vektor istifadəçiləri üçün yüklənəcək */",
"vector-action-toggle-sidebar": "Yan paneli göstər/gizlət",
"vector-languages": "Dillər",
"vector-language-button-aria-label": "Başqa dildəki məqaləyə keçin. {{PLURAL:$1|$1 dildə}} mövcuddur.",
"vector-language-button-label": "{{PLURAL:$1|$1 dildə|$1 dildə}}",
"vector-no-language-button-label": "Dil əlavə et",
"vector-no-language-button-aria-label": "Bu məqalə yalnız bu dildə mövcuddur. Digər dillər üçün məqalə əlavə edin",
"vector-language-redirect-to-top": "Bu {{SITENAME}} layihəsində dil keçidləri məqalənin başlıq hissəsində verilmişdir. [[#p-lang-btn|Yuxarı get]].",
"vector-language-variant-switcher-label": "Dil variantını dəyişdirin",
"vector-action-addsection": "Mövzu əlavə et",
"vector-action-delete": "Sil",
"vector-action-move": "Adını dəyiş",
"vector-action-protect": "Mühafizə et",
"vector-action-undelete": "Bərpa et",
"vector-action-unprotect": "Mühafizəni kənarlaşdır",
"vector-view-create": "Yarat",
"vector-view-edit": "Redaktə",
"vector-view-history": "Tarixçəyə bax",
"vector-view-view": "Oxu",
"vector-view-viewsource": "Mənbəyə bax",
"vector-jumptonavigation": "Naviqasiyaya keçin",
"vector-jumptosearch": "Axtarışa keçin",
"vector-jumptocontent": "Məzmuna keçin",
"vector-more-actions": "Daha çox",
"vector-search-loader": "Axtarış təklifləri yüklənir",
"vector-searchsuggest-containing": "<strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong> ehtiva edən səhifələri axtar",
"vector-intro-page": "Help:Giriş",
"vector-toc-label": "Mündəricat",
"vector-toc-beginning": "Giriş",
"vector-toc-toggle-button-label": "$1 alt bölməsini göstər/gizlə",
"vector-anon-user-menu-pages": ıxış etmiş redaktorlar üçün səhifələr",
"vector-anon-user-menu-pages-learn": "daha ətraflı",
"vector-anon-user-menu-pages-label": "Redaktə haqqında ətraflı məlumat əldə edin",
"vector-main-menu-tooltip": "Əsas menyu",
"vector-toc-menu-tooltip": "Mündəricat",
"vector-toc-collapsible-button-label": "Mündəricatı göstər/gizlət",
"vector-site-nav-label": "Sayt",
"vector-main-menu-label": "Əsas menyu",
"vector-limited-width-toggle": "Məhdud məzmun genişliyini dəyişdirin",
"vector-page-tools-label": "Alətlər",
"vector-page-tools-general-label": "Ümumi",
"vector-page-tools-actions-label": "Fəaliyyətlər",
"vector-pin-element-label": "yan panelə keçir",
"vector-unpin-element-label": "gizlə",
"vector-2022-prefs-talkpage": "[[mw:Talk:Reading/Web/Desktop_Improvements|Müzakirə]]",
"tooltip-vector-anon-user-menu-title": "Daha çox seçim",
"vector-prefs-limited-width": "Məhdud genişlik rejimini aktivləşdirin",
"vector-prefs-limited-width-help": "Təkmil oxuma təcrübəsi üçün məhdud en rejimini aktiv edin.",
"empty-language-selector-body": "Səhifə məzmunu digər dillərdə dəstəklənmir."
}

26
Vector/i18n/azb.json Normal file
View File

@ -0,0 +1,26 @@
{
"@metadata": {
"authors": [
"Alp Er Tunqa",
"Amir a57",
"Bir morty",
"E THP",
"Ebrahimi-amir",
"Ilğım",
"Mousa"
]
},
"vector-language-button-label": "{{PLURAL:$1|$1 دیل|$1 دیل‌لر}}",
"vector-action-addsection": "مؤوضوع آرتیر",
"vector-action-delete": "سیل",
"vector-action-move": "داشی",
"vector-action-protect": "قوْرو",
"vector-action-undelete": "سیلمگی قایتار",
"vector-action-unprotect": "قوْروماغی دَییشدیر",
"vector-view-create": "یارات",
"vector-view-edit": "دَییشدیر",
"vector-view-history": "گئچمیشه باخ",
"vector-view-view": "اوْخو",
"vector-view-viewsource": "قایناغا باخ",
"vector-more-actions": "داها"
}

34
Vector/i18n/ba.json Normal file
View File

@ -0,0 +1,34 @@
{
"@metadata": {
"authors": [
"Assele",
"Haqmar",
"Sagan",
"Рустам Нурыев",
"З. ӘЙЛЕ"
]
},
"skinname-vector": "Векторлы",
"vector-skin-desc": "Ике йүнәлешле биҙәлеш темаһын тәҡдим итә:\n* 2011 - Яңыртылып биҙәлгән һәм ҡулланыу өсөн уңайлаштырылған MonoBook-тың заманса өлгөһө.\n* 2022 - ВМФ проекты сиктәрендә эшләнгән [[mw:Desktop Improvements Эш өҫтәлен яҡшыртыу]] йүнәлеше.",
"vector-languages": "Телдәр",
"vector-language-button-label": "{{PLURAL:$1|$1 тел}}",
"vector-no-language-button-label": "Тел өҫтәргә.",
"vector-action-addsection": "Тема өҫтәргә",
"vector-action-delete": "Юйырға",
"vector-action-move": "Исемен үҙгәртергә",
"vector-action-protect": "Һаҡларға",
"vector-action-undelete": "Тергеҙергә",
"vector-action-unprotect": "Һаҡлауҙы үҙгәртергә",
"vector-view-create": "Яһау",
"vector-view-edit": "Үҙгәртергә",
"vector-view-history": "Тарихты ҡарау",
"vector-view-view": "Уҡырға",
"vector-view-viewsource": "Сығанаҡты ҡарарға",
"vector-more-actions": "Тағы",
"vector-searchsuggest-containing": "Эстәлегендә <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong> булған биттәрҙе эҙләргә",
"vector-toc-label": "Йөкмәткеһе",
"vector-toc-beginning": "Башы",
"vector-page-tools-label": "Ҡоралдар",
"vector-page-tools-general-label": "Дөйөм",
"vector-unpin-element-label": "йәшерергә"
}

26
Vector/i18n/ban-bali.json Normal file
View File

@ -0,0 +1,26 @@
{
"@metadata": {
"authors": [
"Carma Citrawati",
"Chinamoonroll",
"Tok Pisin"
]
},
"vector-languages": "ᬪᬵᬱ",
"vector-language-button-label": "{{PLURAL:$1|$1 ᬪᬲ}}",
"vector-no-language-button-label": "ᬯᭂᬯᭂᬄᬪᬱ",
"vector-action-addsection": "ᬯᭂᬯᭂᬄᬢᭀᬧᬶᬓ᭄",
"vector-action-delete": "ᬳᬸᬲᬧ᭄",
"vector-action-move": "ᬕᬶᬗ᭄ᬲᬶᬭᬗ᭄",
"vector-view-create": "ᬓᬃᬤᬶ",
"vector-view-edit": "ᬳᬸᬳᬄ",
"vector-view-history": "ᬘᬶᬗᬓ᭄ᬩᬩᬤ᭄",
"vector-view-view": "ᬯᬘᬾᬦ᭄",
"vector-more-actions": "ᬮᬶᬬᬦᬦ᭄",
"vector-searchsuggest-containing": "ᬋᬋᬄ​ᬳᬦ᭄ᬢᬸᬓ᭄​ᬓᬘ​ᬫᬤᬕᬶᬂ <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-toc-label": "ᬤᬕᬶᬂ",
"vector-toc-beginning": "ᬧᬫᬄᬩᬄ",
"vector-page-tools-label": "ᬧᬶᬭᬦ᭄ᬢᬶ",
"vector-page-tools-general-label": "ᬳᬸᬫᬸᬫ᭄",
"vector-unpin-element-label": "ᬳᭂᬂᬓᭂᬩᬂ"
}

71
Vector/i18n/ban.json Normal file
View File

@ -0,0 +1,71 @@
{
"@metadata": {
"authors": [
"Adi Mayndra",
"Amire80",
"BASAbali",
"Carma citrawati",
"Chinamoonroll",
"Joseagush",
"NoiX180"
]
},
"skinname-vector": "Vector legacy (2010)",
"skinname-vector-2022": "Vector (2022)",
"vector-specialversion-name": "Véktor",
"vector-skin-desc": "Nyadiayang 2 kules Véktor:\n* 2011 - Vérsi Modérn saking MonoBook antuk cingakan seger tur akéh paningkatan kawigunaan.\n* 2022 - Véktor sané kawangun dados wagian saking proyék [[mw:Desktop Improvements]] WMF.",
"prefs-vector-enable-vector-1-label": "Anggén Vektor Tetamian",
"prefs-vector-enable-vector-1-help": "Ring makudang warsa ngalantur, iraga pacang nganyarin kulea Vektor sacara matahap. Vektor Tetamian ngapersidayang Iraga antuk nyingakin antuk Vektor vérsi kuna (per Désémber 2019). Antuk malajahin luwih langkung indik panganyarain puniki, durus buka [[mw:Reading/Web/Desktop_Improvements|kaca proyék]] iraga.",
"vector-opt-out": "Alih nuju cingakan sadurungné",
"vector-opt-out-tooltip": "Uahin setélan Ida antuk mawali nuju cingakan sadurungné saking kules puniki (Vektor warisan)",
"vector.css": "/* Makasami CSS iriki pacang kabuka antuk anganggé saking kules Vector */",
"vector.js": "/* Makasami JavaScript iriki pacang kabuka antuk anganggé saking kules Vector */",
"vector-action-toggle-sidebar": "Tugel wilah sisi",
"vector-languages": "Basa",
"vector-language-button-aria-label": "Nuju suratan ring basa liyanan. Wénten {{PLURAL:$1|$1 basa}}",
"vector-language-button-label": "{{PLURAL:$1|$1 basa}}",
"vector-no-language-button-label": "Weweh basa",
"vector-no-language-button-aria-label": "Suratan puniki wantah kasedia ring basa puniki. Alih basa sasuratan nyané nuju ring basa liyanan",
"vector-language-redirect-to-top": "Ring {{SITENAME}} puniki, pranala basa magenah ring pahan duur kaca ring sisi murda suratan. [[#p-lang-btn|Nuju kaduur]].",
"vector-language-variant-switcher-label": "Gentos soroh basa",
"vector-action-addsection": "Weweh topik",
"vector-action-delete": "Usap",
"vector-action-move": "Gingsirang",
"vector-action-protect": "Saib",
"vector-action-undelete": "Tan kausap",
"vector-action-unprotect": "Uah saiban",
"vector-view-create": "Kardi",
"vector-view-edit": "Uah",
"vector-view-history": "Cingak babad",
"vector-view-view": "Wacén",
"vector-view-viewsource": "Cingak wit",
"vector-jumptonavigation": "Cebur nuju navigasi",
"vector-jumptosearch": "Cebur nuju parerehan",
"vector-jumptocontent": "Cebur nuju daging",
"vector-more-actions": "Lianan",
"vector-search-loader": "Ngamuat saran parerehan",
"vector-searchsuggest-containing": "Selehin kaca sané madaging <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-intro-page": "Help:Pangater",
"vector-toc-label": "Daging",
"vector-toc-beginning": "Pamahbah",
"vector-toc-toggle-button-label": "Maalih subséksi $1",
"vector-anon-user-menu-pages": "Kaca panguahan sampun medal log",
"vector-anon-user-menu-pages-learn": "pelajahin malih",
"vector-anon-user-menu-pages-label": "Pelajahin malih indik panguahan",
"vector-main-menu-tooltip": "Menu utama",
"vector-toc-menu-tooltip": "Daging cakepan",
"vector-toc-collapsible-button-label": "Maalih ''daftar isi''",
"vector-site-nav-label": "Situs",
"vector-main-menu-label": "Menu utama",
"vector-limited-width-toggle": "Alihang linggah kontén kawates",
"vector-page-tools-label": "Piranti",
"vector-page-tools-general-label": "Umum",
"vector-page-tools-actions-label": "Parilaksana",
"vector-pin-element-label": "gingsirang nuju sidebar",
"vector-unpin-element-label": "engkebang",
"vector-2022-prefs-talkpage": "[[mw:Talk:Reading/Web/Desktop_Improvements|Pabligbagan]]",
"tooltip-vector-anon-user-menu-title": "Opsi liyanan",
"vector-prefs-limited-width": "Idupang mode linggah kawates",
"vector-prefs-limited-width-help": "Idupang mode linggah kawates antuk ngabecikang pengalaman ngawacén",
"empty-language-selector-body": "Kontén kaca nénten kadukung ring basa liyanan."
}

29
Vector/i18n/bar.json Normal file
View File

@ -0,0 +1,29 @@
{
"@metadata": {
"authors": [
"Bua333",
"Joe Watzmo",
"Mucalexx",
"WikiBayer"
]
},
"vector-languages": "Sproochen",
"vector-language-button-label": "{{PLURAL:$1|$1 Sprache|$1 Sproochen}}",
"vector-no-language-button-label": "Sproochen dazuafiang",
"vector-action-addsection": "An Obschnitt dazua doa",
"vector-action-delete": "Leschn",
"vector-action-move": "Vaschiabm",
"vector-action-protect": "schitzn",
"vector-action-undelete": "Wiederherstön",
"vector-action-unprotect": "freigeem",
"vector-view-create": "Aufbaun",
"vector-view-edit": "Werkeln",
"vector-view-history": "Gschicht åhschaun",
"vector-view-view": "Leesen",
"vector-view-viewsource": "Quejtext ozoagn",
"vector-more-actions": "Meara",
"vector-searchsuggest-containing": "Suach nooch Seiten, dé <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong> énthoiden",
"vector-page-tools-label": "Werkzeig",
"vector-page-tools-general-label": "Oigmoah",
"vector-unpin-element-label": "vastegga"
}

8
Vector/i18n/bas.json Normal file
View File

@ -0,0 +1,8 @@
{
"@metadata": {
"authors": [
"Danielgwd"
]
},
"vector-more-actions": "ǹtoŋ"
}

35
Vector/i18n/bbc-latn.json Normal file
View File

@ -0,0 +1,35 @@
{
"@metadata": {
"authors": [
"Daniel Harahap",
"NoiX180",
"Salomo Christian Hutajulu",
"WBT003Bugari",
"WBT006Hendra",
"WBT009Anju",
"Bennylin",
"27christian11"
]
},
"vector-languages": "Parhataan",
"vector-language-button-label": "{{PLURAL:$1|$1 parhataan}}",
"vector-no-language-button-label": "Tambai parhataan",
"vector-action-addsection": "Bagian na imbaru",
"vector-action-delete": "Bolonghon",
"vector-action-move": "Pahusor",
"vector-action-protect": "Ramoti",
"vector-action-undelete": "unang sesa",
"vector-action-unprotect": "Uba parlindungan",
"vector-view-create": "Tompa",
"vector-view-edit": "Patota",
"vector-view-history": "Patudu jujur panotaon",
"vector-view-view": "Jaha",
"vector-view-viewsource": "Ida haroanna",
"vector-more-actions": "Asingna muse",
"vector-searchsuggest-containing": "Diori alaman na marisi <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-toc-label": "Impola",
"vector-toc-beginning": "Pamungka",
"vector-page-tools-label": "Parhohas",
"vector-page-tools-general-label": "Hatopan",
"vector-unpin-element-label": "bunihon"
}

33
Vector/i18n/bcc.json Normal file
View File

@ -0,0 +1,33 @@
{
"@metadata": {
"authors": [
"Mostafadaneshvar",
"RigiMahnoor",
"Sultanselim baloch",
"Moshtank"
]
},
"vector-languages": "زبانان",
"vector-language-button-label": "{{PLURAL:$1|$1ءِ زبان}}",
"vector-no-language-button-label": "زبانانءِ ھۏر کنگ",
"vector-action-addsection": "سرگالے ھۏر کنگ",
"vector-action-delete": "پاک کنگ",
"vector-action-move": "دگہ جاھے کنگ",
"vector-action-protect": "سمبالی",
"vector-action-undelete": "ترینگ",
"vector-action-unprotect": "پروتکشنء ٹگل بدئ",
"vector-view-create": "بنݔنگ",
"vector-view-edit": "ٹگلݔنگ",
"vector-view-history": "رمسءِ چارگ",
"vector-view-view": "وانگ",
"vector-view-viewsource": "سرچممگءِ سۏج",
"vector-more-actions": "گݔشتِر",
"vector-searchsuggest-containing": "شۏھاز مہ تاکانءِ تۏکا <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-toc-label": "تلمبار",
"vector-toc-beginning": "بُنرِد",
"vector-main-menu-tooltip": "رݔدگݔن منو",
"vector-main-menu-label": "رݔدگݔن منو",
"vector-page-tools-label": "ابزاران",
"vector-page-tools-general-label": "لَس",
"vector-unpin-element-label": "اندݔم کنگ"
}

24
Vector/i18n/bci.json Normal file
View File

@ -0,0 +1,24 @@
{
"@metadata": {
"authors": [
"Amire80",
"Kjeanclaude"
]
},
"vector-languages": "Aniein moun",
"vector-language-button-label": "{{PLURAL:$1|$1 aniein|$1 aniein moun}}",
"vector-no-language-button-label": "Fa aniein moun goua sou",
"vector-action-addsection": "Fa ndè ouflè goua sou",
"vector-action-delete": "Nounnoun",
"vector-action-move": "Katchi floua boué nga i douman",
"vector-action-protect": "Sassawa",
"vector-view-create": "Yi",
"vector-view-edit": "Klè noun",
"vector-view-history": "Nian laa sa",
"vector-view-view": "Kanngan",
"vector-more-actions": "Ouflè ékun",
"vector-searchsuggest-containing": "Kounndè floué boué moun nga liké nga wo noun: <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-page-tools-label": "Liké moun",
"vector-page-tools-general-label": "Lika ngba (liké kounndèlè)",
"vector-unpin-element-label": "fa fia"
}

26
Vector/i18n/bcl.json Normal file
View File

@ -0,0 +1,26 @@
{
"@metadata": {
"authors": [
"Amire80",
"Daramlagon",
"Filipinayzd",
"Geopoet",
"Kunokuno",
"ShimunUfesoj"
]
},
"vector-language-button-label": "{{PLURAL:$1|$1 lenggwahe|$1 mga lenggwahe}}",
"vector-action-addsection": "Magdagdag nin pag-uulayan",
"vector-action-delete": "puraon",
"vector-action-move": "Ibalyo",
"vector-action-protect": "Protektaran",
"vector-action-undelete": "Bawion sa pagkapara",
"vector-action-unprotect": "Ribayan an proteksyon",
"vector-view-create": "Gibuhon",
"vector-view-edit": "Baguhon",
"vector-view-history": "Hilingon an kasaysayan",
"vector-view-view": "Basahon",
"vector-view-viewsource": "Hilingón an ginikánan",
"vector-more-actions": "Labi pa",
"vector-searchsuggest-containing": "Maghanap nin mga pahinang igwang <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>"
}

25
Vector/i18n/bdr.json Normal file
View File

@ -0,0 +1,25 @@
{
"@metadata": {
"authors": [
"Tofeiku"
]
},
"vector-languages": "Ling",
"vector-language-button-label": "{{PLURAL:$1|$1 ling}}",
"vector-no-language-button-label": "Ngenopon tuturan",
"vector-action-addsection": "Namba serita'",
"vector-action-delete": "Penelanyap",
"vector-action-move": "Pinali",
"vector-action-protect": "Sindung",
"vector-view-create": "Muat",
"vector-view-edit": "Niuba",
"vector-view-history": "Ngenda' kisa dau-dau",
"vector-view-view": "Boso",
"vector-more-actions": "Iko",
"vector-searchsuggest-containing": "Penemia laman yang bengen <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-toc-label": "Isi",
"vector-toc-beginning": "Nimpoon",
"vector-page-tools-label": "Pekakas",
"vector-page-tools-general-label": "Umum",
"vector-unpin-element-label": "tenapuk"
}

View File

@ -0,0 +1,65 @@
{
"@metadata": {
"authors": [
"EugeneZelenko",
"Nieszczarda2",
"Red Winged Duck",
"Renessaince",
"Wizardist"
]
},
"skinname-vector": "Стары Вэктар (2010)",
"skinname-vector-2022": "Вэктар (2022)",
"vector-specialversion-name": "Вэктар",
"vector-skin-desc": "Прадастаўляе 2 тэмы Вэктару:\n* 2011 — сучасная вэрсія MonoBook з абноўленым выглядам і шматлікімі паляпшэньнямі;\n* 2022 — Вэктар, збудаваны ў межах праекту ФВМ [[mw:Desktop Improvements]].",
"prefs-vector-enable-vector-1-label": "Выкарыстаць стары Вэктар",
"prefs-vector-enable-vector-1-help": "Цягам наступных некалькіх гадоў мы будзем паступова абнаўляць тэму „Вэктар“. Пераемны Вэктар дазволіць вам праглядаць старую вэрсію Вэктара (паводле стану на сьнежань 2019 року). Каб даведацца пра абнаўленьні болей, зайдзіце на старонку [[mw:Reading/Web/Desktop_Improvements|нашага праекту]].",
"vector-opt-out": "Пераключыцца на стары выгляд",
"vector-opt-out-tooltip": "Зьмяніце налады, каб вярнуцца да старой тэмы (старога Вэктару)",
"vector.css": "/* Усе зьмешчаныя тут CSS будуць загружаныя для ўдзельнікаў, якія выкарыстоўваюць тэму афармленьня Вэктар */",
"vector.js": "/* Увесь зьмешчаны тут JavaScript будзе загружаны для ўдзельнікаў, якія выкарыстоўваюць тэму афармленьня Вэктар */",
"vector-action-toggle-sidebar": "Пераключыць бакавую панэль",
"vector-languages": "Мовы",
"vector-language-button-aria-label": "Перайсьці да артыкула на іншай мове. Выбраць з: {{PLURAL:$1|$1 language|$1 languages}}",
"vector-language-button-label": "{{PLURAL:$1|$1 мова|$1 мовы|$1 моваў}}",
"vector-no-language-button-label": "Дадаць мовы",
"vector-no-language-button-aria-label": "Гэты артыкул існуе толькі гэтай мовай. Дадайце артыкулы іншымі мовамі",
"vector-language-redirect-to-top": "У гэтым праекце {{SITENAME}} моўныя спасылкі знаходзяцца ўверсе старонкі насупраць назвы артыкулу. [[#p-lang-btn|Перайсьці ўгору]].",
"vector-language-variant-switcher-label": "Зьмяніць варыянт мовы",
"vector-action-addsection": "Дадаць тэму",
"vector-action-delete": "Выдаліць",
"vector-action-move": "Перанесьці",
"vector-action-protect": "Абараніць",
"vector-action-undelete": "Аднавіць",
"vector-action-unprotect": "Зьмяніць абарону",
"vector-view-create": "Стварыць",
"vector-view-edit": "Рэдагаваць",
"vector-view-history": "Паказаць гісторыю",
"vector-view-view": "Чытаць",
"vector-view-viewsource": "Паказаць крыніцу",
"vector-jumptonavigation": "Перайсьці да навігацыі",
"vector-jumptosearch": "Перайсьці да пошуку",
"vector-jumptocontent": "Перайсьці да зьместу",
"vector-more-actions": "Болей",
"vector-search-loader": "Загрузка прапановаў пошуку",
"vector-searchsuggest-containing": "Пошук старонак, якія маюць <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-intro-page": "Help:Уводзіны",
"vector-toc-label": "Зьмест",
"vector-toc-beginning": "Пачатак",
"vector-toc-toggle-button-label": "Пераключыць падразьдзел $1",
"vector-anon-user-menu-pages": "Старонкі для неаўтарызаваных рэдактараў",
"vector-anon-user-menu-pages-learn": "даведацца болей",
"vector-anon-user-menu-pages-label": "Даведайцеся пра рэдагаваньне болей",
"vector-main-menu-tooltip": "Галоўнае мэню",
"vector-toc-menu-tooltip": "Зьмест",
"vector-toc-collapsible-button-label": "Схаваць/паказаць зьмест",
"vector-site-nav-label": "Сайт",
"vector-page-tools-label": "Інструмэнты",
"vector-page-tools-general-label": "Агульныя",
"vector-pin-element-label": "перанесьці ў бакавую панэль",
"vector-unpin-element-label": "схаваць",
"vector-2022-prefs-talkpage": "[[mw:Talk:Reading/Web/Desktop_Improvements|Абмеркаваньне]]",
"tooltip-vector-anon-user-menu-title": "Болей парамэтраў",
"vector-prefs-limited-width": "Уключыць рэжым абмежаванай шырыні",
"vector-prefs-limited-width-help": "Уключыць рэжым абмежаванай шырыні дзеля лепшага чытаньня."
}

71
Vector/i18n/be.json Normal file
View File

@ -0,0 +1,71 @@
{
"@metadata": {
"authors": [
"Amire80",
"Artsiom91",
"Chadyka",
"Kareyac",
"Maksim L.",
"Mikalai Udodau",
"No Sleep till Krupki",
"Plaga med",
"Tomato Cream",
"Yury Tarasievich",
"Дзяніс Тутэйшы",
"Хомелка"
]
},
"vector-skin-desc": "Забяспечвае 2 вокладкі Вектар:\n* 2011 — Сучасная версія вокладкі Манабук, з абноўленым відам і шматлікімі зручнымі паляпшэннямі.\n* 2022 — Вектар, створаны ў рамках праекта WMF [[mw:Desktop Improvements]].",
"prefs-vector-enable-vector-1-label": "Ужыць Legacy Vector",
"prefs-vector-enable-vector-1-help": "Цягам наступных некалькіх гадоў мы будзем паступова абнаўляць шаблон Vector. Legacy Vector дазволіць праглядаць старую версію Vector (станам на снежань 2019 года). Каб даведацца больш, перайдзіце на нашу [[mw:Reading/Web/Desktop_Improvements|старонку праекта]].",
"vector-opt-out": "Пераключыцца на стары выгляд",
"vector-opt-out-tooltip": "Змяніце налады, каб вярнуцца да старога выгляду вокладкі (Стары Vector)",
"vector-action-toggle-sidebar": "Пераключыць бакавую панэль",
"vector-languages": "Мовы",
"vector-language-button-aria-label": "Перайсці да артыкула на іншай мове. Даступны на $1 {{PLURAL:$1|мове|мовах}}.",
"vector-language-button-label": "{{PLURAL:$1|$1 мова|$1 мовы|$1 моў}}",
"vector-no-language-button-label": "Дадаць мовы",
"vector-no-language-button-aria-label": "Гэты артыкул ёсць толькі на гэтай мове. Дадайце артыкул для іншых моў",
"vector-language-redirect-to-top": "На гэтай пляцоўцы {{SITENAME}} моўныя спасылкі знаходзяцца ўверсе старонкі насупраць загалоўка артыкула. [[#p-lang-btn|Перайсці ўверх]].",
"vector-language-variant-switcher-label": "Змяніць моўны варыянт",
"vector-action-addsection": "Дадаць тэму",
"vector-action-delete": "Выдаліць",
"vector-action-move": "Перанесці",
"vector-action-protect": "Ахова",
"vector-action-undelete": "Аднавіць",
"vector-action-unprotect": "Змяніць ахову",
"vector-view-create": "Стварыць",
"vector-view-edit": "Правіць",
"vector-view-history": "Паказаць гісторыю",
"vector-view-view": "Чытаць",
"vector-view-viewsource": "Паказаць зыходны код",
"vector-jumptonavigation": "Перайсці да навігацыі",
"vector-jumptosearch": "Перайсці да пошуку",
"vector-jumptocontent": "Перайсці да зместу",
"vector-more-actions": "Яшчэ",
"vector-search-loader": "Загрузка прапаноў пошуку",
"vector-searchsuggest-containing": "Шукаць старонкі, якія змяшчаюць <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-intro-page": "Help:Даведка",
"vector-toc-label": "Змест",
"vector-toc-beginning": "Пачатак",
"vector-toc-toggle-button-label": "Змяніць стан падраздзелу $1",
"vector-anon-user-menu-pages": "Старонкі для ананімных рэдактараў",
"vector-anon-user-menu-pages-learn": "даведацца больш",
"vector-anon-user-menu-pages-label": "Даведацца больш пра праўку",
"vector-main-menu-tooltip": "Галоўнае меню",
"vector-toc-menu-tooltip": "Змест",
"vector-toc-collapsible-button-label": "Пераключыць змест",
"vector-site-nav-label": "Праект",
"vector-main-menu-label": "Галоўнае меню",
"vector-limited-width-toggle": "Пераключыць абмежаваную шырыню зместу",
"vector-page-tools-label": "Інструменты",
"vector-page-tools-general-label": "Агульныя",
"vector-page-tools-actions-label": "Дзеянні",
"vector-pin-element-label": "перанесці да бакавой панэлі",
"vector-unpin-element-label": "схаваць",
"vector-2022-prefs-talkpage": "[[mw:Talk:Reading/Web/Desktop_Improvements|Размова]]",
"tooltip-vector-anon-user-menu-title": "Больш магчымасцей",
"vector-prefs-limited-width": "Уключыць рэжым абмежаванай шырыні",
"vector-prefs-limited-width-help": "Уключыце рэжым абмежаванай шырыні для лепшага чытання.",
"empty-language-selector-body": "Змест старонкі недаступны на іншых мовах."
}

62
Vector/i18n/bew.json Normal file
View File

@ -0,0 +1,62 @@
{
"@metadata": {
"authors": [
"Naval Scene",
"Bangrapip",
"Amire80"
]
},
"vector-skin-desc": "Nyediain 2 kulit Bèktor:\n* 2011 - Pèrsi moderen deri MonoBook dengen roman anyar èn banyak peningkatan kebegunaan.\n* 2022 -Bèktor nyang dibangun sebagé bagèan deri proyèk WMF [[mw:Desktop Improvements]].",
"prefs-vector-enable-vector-1-label": "Paké Bèktor Warisan",
"prefs-vector-enable-vector-1-help": "Dalem beberapa tahon lagi, kita bakal pelan-pelan merbaruin kulit Bèktornya. Bèktor Warisan bakal ngasi lu liat-liat paké Bèktor pèrsi lama (per Désèmber 2019). Bakal mbelajarin lebi lanjut pasal pembaruan, buka kita punya [[mw:Reading/Web/Desktop_Improvements|halaman proyèk]].",
"vector-opt-out": "Ganti ke roman lama",
"vector-opt-out-tooltip": "Robah lu punya pengaturan èn balik ke roman lama deri ni kulit (Bèktor warisan)",
"vector-action-toggle-sidebar": "Cetèkin palang samping",
"vector-languages": "Basa",
"vector-language-button-aria-label": "Pegi ke makalah dalem laèn basa. Kesedia dalem {{PLURAL:$1|$1 basa}}",
"vector-language-button-label": "{{PLURAL:$1|$1 basa}}",
"vector-no-language-button-label": "Tambah basa",
"vector-no-language-button-aria-label": "Ni makalah cuman ada dalem ni basa. Tambah makalah bakal laèn-laèn basa",
"vector-language-redirect-to-top": "Di ni {{SITENAME}}, sènggètan basa ada di atas halaman di sampingnya judulmakalah. [[#p-lang-btn|Ke atas]].",
"vector-language-variant-switcher-label": "Robah ragem basa",
"vector-action-addsection": "Tambah topik",
"vector-action-delete": "Apus",
"vector-action-move": "Pindahin",
"vector-action-protect": "Lindungin",
"vector-action-undelete": "Urungin ngapusnya",
"vector-action-unprotect": "Robah perlindungan",
"vector-view-create": "Keja",
"vector-view-edit": "Permak",
"vector-view-history": "Deleng riwayat",
"vector-view-view": "Baca",
"vector-view-viewsource": "Deleng sumber",
"vector-jumptonavigation": "Loncat ke babelan",
"vector-jumptosearch": "Loncat ke penyarian",
"vector-jumptocontent": "Loncat ke isi",
"vector-more-actions": "Laènnya",
"vector-search-loader": "Muat saran penyarian",
"vector-searchsuggest-containing": "Cari halaman nyang ada <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-intro-page": "Help:Mukadimah",
"vector-toc-label": "Daptar isi",
"vector-toc-beginning": "Awal",
"vector-toc-toggle-button-label": "Cetèkin anakbagèan $1",
"vector-anon-user-menu-pages": "Halaman bakal pemermak nyang kuar",
"vector-anon-user-menu-pages-learn": "belajarin lebi lanjut",
"vector-anon-user-menu-pages-label": "Belajarin lebi lanjut pasal pemermakan",
"vector-main-menu-tooltip": "Menu utama",
"vector-toc-menu-tooltip": "Daptar isi",
"vector-toc-collapsible-button-label": "Cetèkin daptar isi",
"vector-site-nav-label": "Pelampang",
"vector-main-menu-label": "Menu utama",
"vector-limited-width-toggle": "Cetèkin lèbar isi kewates",
"vector-page-tools-label": "Peranti",
"vector-page-tools-general-label": "Umum",
"vector-page-tools-actions-label": "Piil",
"vector-pin-element-label": "pindah ke palang samping",
"vector-unpin-element-label": "umpetin",
"vector-2022-prefs-talkpage": "[[mw:Talk:Reading/Web/Desktop_Improvements|Perhadring]]",
"tooltip-vector-anon-user-menu-title": "Opsi laènnya",
"vector-prefs-limited-width": "Nyalain mode lèbar kewates",
"vector-prefs-limited-width-help": "Nyalain mode lèbar kewates biar lebi ènak ngebacanya.",
"empty-language-selector-body": "Isi halaman kaga' didukung di laèn-laèn basa."
}

13
Vector/i18n/bfa.json Normal file
View File

@ -0,0 +1,13 @@
{
"@metadata": {
"authors": [
"Denayadennis"
]
},
"vector-languages": "Kutujin",
"vector-language-button-label": "{{PLURAL:$1|$1 kutu |$1 kutujin}}",
"vector-no-language-button-label": "'yalaki kune kutujin",
"vector-page-tools-label": "Tito",
"vector-page-tools-general-label": "'bukuluŋ",
"vector-unpin-element-label": "muke"
}

66
Vector/i18n/bg.json Normal file
View File

@ -0,0 +1,66 @@
{
"@metadata": {
"authors": [
"Amire80",
"Borislav",
"DCLXVI",
"ShockD",
"Spiritia",
"StanProg",
"Termininja"
]
},
"vector-skin-desc": "Предоставя 2 облика от тип „Вектор“:\n* 2011: „Модерна“ версия на MonoBook с обновен дизайн и много подобрения на ползваемостта.\n* 2022: „Векторна“ създадена като част от проекта WMF [[mw:Desktop Improvements]].",
"prefs-vector-enable-vector-1-label": "Използване на стария Vector",
"prefs-vector-enable-vector-1-help": "През следващите няколко години постепенно ще актуализираме облика Vector. Legacy Vector ще Wи позволи да видите старата версия на Vector (от декември 2019 г.). За да научите повече за актуализациите, отидете на [[mw:Reading/Web/Desktop_Improvements|страницата на проекта]].",
"vector-opt-out": "Превключване към стария изглед",
"vector-opt-out-tooltip": "Променете настройките си, за да се върнете към стария вид на облика (Vector legacy)",
"vector-action-toggle-sidebar": "Превключване на страничната лента",
"vector-languages": "Езици",
"vector-language-button-aria-label": "Към на статията на друг език. Налична на {{PLURAL:$1|$1 език|$1 езика}}",
"vector-language-button-label": "{{PLURAL:$1|$1 език|$1 езика}}",
"vector-no-language-button-label": "Добавяне на езици",
"vector-no-language-button-aria-label": "Тази статия съществува само на този език. Добавете статията за други езици",
"vector-language-redirect-to-top": "В тази {{SITENAME}} езиковите връзки са в горната част на страницата срещу заглавието на статията. [[#p-lang-btn|Отидете най-горе]].",
"vector-language-variant-switcher-label": "Промяна на езиковия вариант",
"vector-action-addsection": "Добавяне на тема",
"vector-action-delete": "Изтриване",
"vector-action-move": "Преместване",
"vector-action-protect": "Защита",
"vector-action-undelete": "Възстановяване",
"vector-action-unprotect": "Промяна на защитата",
"vector-view-create": "Създаване",
"vector-view-edit": "Редактиране",
"vector-view-history": "История",
"vector-view-view": "Преглед",
"vector-view-viewsource": "Преглед на кода",
"vector-jumptonavigation": "Направо към навигацията",
"vector-jumptosearch": "Направо към търсенето",
"vector-jumptocontent": "Направо към съдържанието",
"vector-more-actions": "Още",
"vector-search-loader": "Зареждане на предложенията за търсене",
"vector-searchsuggest-containing": "Търсене на страници съдържащи <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-intro-page": "Help:Въведение",
"vector-toc-label": "Съдържание",
"vector-toc-beginning": "Начало",
"vector-toc-toggle-button-label": "Превключване на подраздел $1",
"vector-anon-user-menu-pages": "Страници за излезли от системата редактори",
"vector-anon-user-menu-pages-learn": "научете повече",
"vector-anon-user-menu-pages-label": "Научете повече за редактирането",
"vector-main-menu-tooltip": "Главно меню",
"vector-toc-menu-tooltip": "Съдържание",
"vector-toc-collapsible-button-label": "Скриване/показване на съдържанието",
"vector-site-nav-label": "Сайт",
"vector-main-menu-label": "Главно меню",
"vector-limited-width-toggle": "Превключване на ограничена дължина на съдържанието",
"vector-page-tools-label": "Инструменти",
"vector-page-tools-general-label": "Основни",
"vector-page-tools-actions-label": "Действия",
"vector-pin-element-label": "преместване към страничната лента",
"vector-unpin-element-label": "скриване",
"vector-2022-prefs-talkpage": "[[mw:Talk:Reading/Web/Desktop_Improvements|Дискусия]]",
"tooltip-vector-anon-user-menu-title": "Допълнителни опции",
"vector-prefs-limited-width": "Включване на режим с ограничена ширина",
"vector-prefs-limited-width-help": "Включете режима с ограничена ширина за подобрено четене.",
"empty-language-selector-body": "Съдържанието на страницата не се поддържа на други езици."
}

21
Vector/i18n/bgc.json Normal file
View File

@ -0,0 +1,21 @@
{
"@metadata": {
"authors": [
"भारत्पराक्रमि"
]
},
"vector-languages": "भाषाएँ",
"vector-language-button-label": "{{PLURAL:$1|$1 भाषा|$1 भाषाएँ}}",
"vector-no-language-button-label": "भाषाएँ जोड़ें",
"vector-action-addsection": "विषय जोड़ें",
"vector-action-delete": "हटाएँ",
"vector-action-move": "स्थानांतरित करें",
"vector-action-protect": "सुरक्षा करें",
"vector-view-create": "बनावें",
"vector-view-history": "इतिहास नै देखें",
"vector-more-actions": "और भी",
"vector-searchsuggest-containing": "<strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong> सी सहित पन्ने खोजें",
"vector-page-tools-label": "औजारें",
"vector-page-tools-general-label": "सामान्य",
"vector-unpin-element-label": "छिपावें"
}

14
Vector/i18n/bgn.json Normal file
View File

@ -0,0 +1,14 @@
{
"@metadata": {
"authors": [
"Baloch Afghanistan"
]
},
"vector-action-addsection": "یک بخش ئی لۆڑ کورتین",
"vector-action-move": "انتقال",
"vector-view-create": "جوڑ\t کورتین",
"vector-view-edit": "ایڈیٹ",
"vector-view-history": "تاریخچه ئی دیستین",
"vector-view-view": "وانتین",
"vector-more-actions": "گیشتیر"
}

28
Vector/i18n/bho.json Normal file
View File

@ -0,0 +1,28 @@
{
"@metadata": {
"authors": [
"Ganesh",
"Nepaboy",
"SatyamMishra"
]
},
"vector-languages": "भाषा",
"vector-language-button-label": "{{PLURAL:$1|$1 भाषा|$1 भाषा सभ}}",
"vector-no-language-button-label": "भाषा जोड़ीं",
"vector-action-addsection": "बिसय जोड़ीं",
"vector-action-delete": "मिटाईं",
"vector-action-move": "स्थानांतरण",
"vector-action-protect": "सुरक्षित करीं",
"vector-action-undelete": "मत मिटाईं",
"vector-action-unprotect": "सुरक्षा बदलीं",
"vector-view-create": "बनाईं",
"vector-view-edit": "संपादन",
"vector-view-history": "इतिहास देखीं",
"vector-view-view": "पढ़ीं",
"vector-view-viewsource": "स्रोत देखीं",
"vector-more-actions": "अधिका",
"vector-searchsuggest-containing": "पन्ना खोजीं जिनहन में <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong> होखे",
"vector-page-tools-label": "औजार",
"vector-page-tools-general-label": "जनरल",
"vector-unpin-element-label": "लुकवाईं"
}

10
Vector/i18n/bi.json Normal file
View File

@ -0,0 +1,10 @@
{
"@metadata": {
"authors": [
"Sotiale"
]
},
"vector-action-move": "Muv",
"vector-view-history": "Lukluk histri",
"vector-view-view": "Rid"
}

36
Vector/i18n/bjn.json Normal file
View File

@ -0,0 +1,36 @@
{
"@metadata": {
"authors": [
"Amire80",
"Ezagren",
"J Subhi",
"Mnam23",
"Arcuscloud"
]
},
"vector-opt-out": "Baalih ka tampaian lawas",
"vector-languages": "Basa",
"vector-language-button-label": "{{PLURAL:$1|$1 basa}}",
"vector-no-language-button-label": "Tambah basa",
"vector-action-addsection": "Tambahi tupik",
"vector-action-delete": "Hapus",
"vector-action-move": "Pindahakan",
"vector-action-protect": "Lindungi",
"vector-action-undelete": "Pawalangan pahapusan",
"vector-action-unprotect": "Palindungan",
"vector-view-create": "Ulah",
"vector-view-edit": "Babak",
"vector-view-history": "Janaki riwayat",
"vector-view-view": "Baca",
"vector-view-viewsource": "Janaki asal-mulanya",
"vector-more-actions": "Lainnya",
"vector-searchsuggest-containing": "Gagai laman nang baisi <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-toc-label": "Isi",
"vector-toc-beginning": "Panambayan",
"vector-anon-user-menu-pages-learn": "palajari labih lanjut",
"vector-anon-user-menu-pages-label": "Palajari labih lanjut pasal mambabak",
"vector-page-tools-label": "Pakakas",
"vector-page-tools-general-label": "Umum",
"vector-pin-element-label": "baalih ka bilah sisi",
"vector-unpin-element-label": "suhukakan"
}

14
Vector/i18n/blc.json Normal file
View File

@ -0,0 +1,14 @@
{
"@metadata": {
"authors": [
"Muskwatch"
]
},
"vector-language-button-label": "{{PLURAL:$1|smawiixw wa slhk'msta|$1 wa slhk'msta}}",
"vector-action-move": "sasttxw",
"vector-view-create": "sikstucw ti umat t'ayc",
"vector-view-edit": "qw'lasiitucw",
"vector-view-history": "sik'cicw ti s7alh7ayts ti umat t'ayc alh tu patsalh txw",
"vector-view-view": "sipaapqanu",
"vector-more-actions": "inic7acwlh"
}

35
Vector/i18n/blk.json Normal file
View File

@ -0,0 +1,35 @@
{
"@metadata": {
"authors": [
"Khun Kt",
"Ninjastrikers",
"咽頭べさ",
"ခွန်ဖန်ဒွဲ့"
]
},
"vector-languages": "ဘာႏသာႏငဝ်းငွါဖုံႏ",
"vector-language-button-label": "{{PLURAL:$1|$1 ဘာႏသာႏငဝ်းငွါ|$1 ဘာႏသာႏငဝ်းငွါဖိုင်ႏ}}",
"vector-no-language-button-label": "ထဲမ်သော့ꩻဘာႏသာႏငဝ်းငွါဖိုင်ႏ",
"vector-action-addsection": "ထဲမ်သော့ꩻထဲင်း အကျောင်ꩻခရာႏတသာ",
"vector-action-delete": "ယားကုဲင်",
"vector-action-move": "ခြုဲင်း",
"vector-action-protect": "ရဲးကမ်းသွော့",
"vector-action-undelete": "ယားကုဲင်တဝ်းဒုမ်",
"vector-action-unprotect": "ပြောင်ꩻလုဲင်ႏ အရဲးအကမ်း",
"vector-view-create": "ဖန်ဆင်ꩻ",
"vector-view-edit": "မွဉ်းဖျင်",
"vector-view-history": "ထွားရာႏဇာႏဝင်ႏ",
"vector-view-view": "ဟော်ꩻ",
"vector-view-viewsource": "ထွားအရွီးအခိုႏ",
"vector-more-actions": "ထဲင်းယင်း",
"vector-searchsuggest-containing": "ထိုမ်ႏသွော့ ကပါသော့ꩻ လိတ်မဲ့ငါဖုံႏယို။ <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-intro-page": "Help:ငဝ်းတယ်ႏအွဉ်",
"vector-toc-label": "ဟော်ꩻထွားရီးတာႏ",
"vector-toc-beginning": "အစ",
"vector-anon-user-menu-pages-learn": "လွူꩻထွားထဲင်းအသွုပ်",
"vector-anon-user-menu-pages-label": "လွူꩻထွားထဲင်း မွဉ်းဖျင်ခရာႏအထဲင်း",
"vector-page-tools-label": "ကိရိယာႏဖိုင်ႏ",
"vector-page-tools-general-label": "အစွိုးစွိုးအဒဝ်ႏဒဝ်ႏ",
"vector-unpin-element-label": "အွဉ်ႏပလို့ꩻ",
"tooltip-vector-anon-user-menu-title": "လွိုက်ခရာႏအထဲင်းဖိုင်ႏ"
}

8
Vector/i18n/bm.json Normal file
View File

@ -0,0 +1,8 @@
{
"@metadata": {
"authors": [
"Amadouyoro.thiam"
]
},
"vector-view-view": "Kalan"
}

76
Vector/i18n/bn.json Normal file
View File

@ -0,0 +1,76 @@
{
"@metadata": {
"authors": [
"Aftab1995",
"Aftabuzzaman",
"Amire80",
"Bellayet",
"Leemon2010",
"Nasir8891",
"Sourav Halder",
"Tauhid16",
"Wikitanvir",
"Yahya",
"আজিজ",
"আফতাবুজ্জামান"
]
},
"skinname-vector": "ভেক্টর উত্তরাধিকার (২০১০)",
"skinname-vector-2022": "ভেক্টর (২০২২)",
"vector-specialversion-name": "ভেক্টর",
"vector-skin-desc": "২টি ভেক্টর আবরণ প্রদান করে:\n* ২০১১ - নতুন চেহারায় মনোবুকের আধুনিক সংস্করণ এবং ব্যবহারযোগ্যতায় আরো অনেক উন্নতি।\n* ২০২২ - ডব্লিউএমএফ [[mw:Desktop Improvements|ডেস্কটপ উন্নয়ন]] প্রকল্পের অংশ হিসেবে নির্মিত ভেক্টর।",
"prefs-vector-enable-vector-1-label": "উত্তরাধিকার ভেক্টর ব্যবহার করুন",
"prefs-vector-enable-vector-1-help": "আগামী কয়েক বছর ধরে, আমরা ধীরে ধীরে ভেক্টর আবরণ হালনাগাদ করব। উত্তরাধিকার ভেক্টর আপনাকে ভেক্টরের পুরনো সংস্করণ দেখার অনুমতি দেবে (ডিসেম্বর ২০১৯ অনুযায়ী)। এই হালনাগাদ সম্পর্কে আরও জানতে, আমাদের [[mw:Reading/Web/Desktop_Improvements|প্রকল্প পাতায়]] যান।",
"vector-opt-out": "পুরনো চেহারাতে যান",
"vector-opt-out-tooltip": "আবরণটির পুরনো চেহারাতে ফিরে যেতে আপনার সেটিংস পরিবর্তন করুন (উত্তরাধিকার ভেক্টর)",
"vector.css": "/* এখানের সকল সিএসএস ভেক্টর আবরণ ব্যবহারকারীদের জন্য লোড হবে */",
"vector.js": "/* এখানের সকল জাভাস্ক্রিপ্ট ভেক্টর আবরণ ব্যবহারকারীদের জন্য লোড হবে */",
"vector-action-toggle-sidebar": "পার্শ্বদণ্ড দেখান",
"vector-languages": "ভাষা",
"vector-language-button-aria-label": "অন্য ভাষার একটি নিবন্ধে যান। {{PLURAL:$1|$1টি ভাষায়}} উপলব্ধ রয়েছে।",
"vector-language-button-label": "{{PLURAL:$1|$1টি ভাষা}}",
"vector-no-language-button-label": "ভাষা যোগ করুন",
"vector-no-language-button-aria-label": "এই নিবন্ধটি শুধুমাত্র এই ভাষায় বিদ্যমান। অন্যান্য ভাষার জন্য নিবন্ধ যোগ করুন",
"vector-language-redirect-to-top": "এই উইকিতে, ভাষার লিঙ্কগুলি পাতার উপরের দিকে নিবন্ধের শিরোনামের পাশে রয়েছে। [[#p-lang-btn|উপরে চলুন]]।",
"vector-language-variant-switcher-label": "ভাষার রূপভেদ পরিবর্তন করুন",
"vector-action-addsection": "আলোচনা যোগ করুন",
"vector-action-delete": "অপসারণ",
"vector-action-move": "স্থানান্তর",
"vector-action-protect": "সুরক্ষা",
"vector-action-undelete": "পুনরুদ্ধার",
"vector-action-unprotect": "সুরক্ষা পরিবর্তন",
"vector-view-create": "তৈরি করুন",
"vector-view-edit": "সম্পাদনা",
"vector-view-history": "ইতিহাস দেখুন",
"vector-view-view": "পড়ুন",
"vector-view-viewsource": "উৎস দেখুন",
"vector-jumptonavigation": "পরিভ্রমণে চলুন",
"vector-jumptosearch": "অনুসন্ধানে চলুন",
"vector-jumptocontent": "বিষয়বস্তুতে চলুন",
"vector-more-actions": "আরও",
"vector-search-loader": "অনুসন্ধানের পরামর্শ লোড করা হচ্ছে",
"vector-searchsuggest-containing": "<strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong> থাকা পাতাগুলিতে অনুসন্ধান করুন",
"vector-intro-page": "Help:ভূমিকা",
"vector-toc-label": "পরিচ্ছেদসমূহ",
"vector-toc-beginning": "সূচনা",
"vector-toc-toggle-button-label": "$1 উপঅনুচ্ছেদ টগল করুন",
"vector-anon-user-menu-pages": "অনিবন্ধিত সম্পাদকের জন্য পাতা",
"vector-anon-user-menu-pages-learn": "আরও জানুন",
"vector-anon-user-menu-pages-label": "সম্পাদনা করা সম্পর্কে আরও জানুন",
"vector-main-menu-tooltip": "প্রধান মেনু",
"vector-toc-menu-tooltip": "সূচিপত্র",
"vector-toc-collapsible-button-label": "সূচিপত্র টগল করুন",
"vector-site-nav-label": "সাইট",
"vector-main-menu-label": "প্রধান মেনু",
"vector-limited-width-toggle": "সীমিত বিষয়বস্তুর প্রস্থ সক্রিয় বা নিষ্ক্রিয় করুন",
"vector-page-tools-label": "সরঞ্জাম",
"vector-page-tools-general-label": "সাধারণ",
"vector-page-tools-actions-label": "কার্য",
"vector-pin-element-label": "পার্শ্বদণ্ডে নিন",
"vector-unpin-element-label": "লুকান",
"vector-2022-prefs-talkpage": "[[mw:Talk:Reading/Web/Desktop_Improvements|আলোচনা]]",
"tooltip-vector-anon-user-menu-title": "আরও বিকল্প",
"vector-prefs-limited-width": "সীমিত প্রস্থযুক্ত মোড সক্রিয় করুন",
"vector-prefs-limited-width-help": "উন্নত পঠন অভিজ্ঞতার জন্য সীমিত প্রস্থ মোড সক্রিয় করে।",
"empty-language-selector-body": "পাতাটির বিষয়বস্তু অন্যান্য ভাষায় নেই।"
}

21
Vector/i18n/bo.json Normal file
View File

@ -0,0 +1,21 @@
{
"@metadata": {
"authors": [
"Freeyak",
"Phurbutsering",
"ཁ་བཏགས་ནག་པོ"
]
},
"vector-action-addsection": "བརྗོད་གཞི་ཁ་སྣོན།",
"vector-action-delete": "སུབས།",
"vector-action-move": "སྤོར་བ།",
"vector-action-protect": "འགོག་སྲུང།",
"vector-action-undelete": "མི་བསུབས་",
"vector-action-unprotect": "སྲུང་སྐྱོབ་གློད་པ།",
"vector-view-create": "གསར་བཟོ།",
"vector-view-edit": "རྩོམ་སྒྲིག",
"vector-view-history": "ལོ་རྒྱུས་ལ་ལྟ་བ།",
"vector-view-view": "ཀློག་པ།",
"vector-view-viewsource": "ཁུངས་ལ་ལྟ་བ།",
"vector-more-actions": "དེ་ལས་མང་བ།"
}

21
Vector/i18n/bol.json Normal file
View File

@ -0,0 +1,21 @@
{
"@metadata": {
"authors": [
"El-hussain14"
]
},
"vector-languages": "bòo",
"vector-language-button-label": "{{PLURAL:$1|$1 harshe|$1 bòo}}",
"vector-no-language-button-label": "Sauwadi yare",
"vector-action-addsection": "Sawwai labar",
"vector-action-protect": "deito",
"vector-view-create": "Algino",
"vector-view-history": "Beyi ewe tarihi",
"vector-more-actions": "Sauwadi",
"vector-searchsuggest-containing": "Inne ngafeka lagani gah<strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-toc-label": "Kanu labar",
"vector-toc-beginning": "Zalshe",
"vector-page-tools-label": "Karai ruta",
"vector-page-tools-general-label": "Lele",
"vector-unpin-element-label": "bunku"
}

19
Vector/i18n/bpy.json Normal file
View File

@ -0,0 +1,19 @@
{
"@metadata": {
"authors": [
"Usingha"
]
},
"vector-action-addsection": "বিষয় তিলকর",
"vector-action-delete": "পুসে বেলা",
"vector-action-move": "থেইকর",
"vector-action-protect": "লুকর",
"vector-action-undelete": "নাপুসি",
"vector-action-unprotect": "লুকরানিহান সিলকর",
"vector-view-create": "হঙকরিক",
"vector-view-edit": "পতানি",
"vector-view-history": "ইতিহাস চেইক",
"vector-view-view": "পাকরিক",
"vector-view-viewsource": "সোর্স চেইক",
"vector-more-actions": "আরকউ"
}

17
Vector/i18n/bqi.json Normal file
View File

@ -0,0 +1,17 @@
{
"@metadata": {
"authors": [
"Isevand",
"Mogoeilor"
]
},
"vector-action-addsection": "داسۊن اْزاف کونین",
"vector-action-delete": "پاکسا کردن",
"vector-action-move": "جابجا کردن",
"vector-action-protect": "هناڌاری ۉ پٱلڌاری",
"vector-view-create": "راس كردن",
"vector-view-edit": "آلشدکاری کردن",
"vector-view-history": "ديڌن ڤیرگار",
"vector-view-view": "خوندن",
"vector-more-actions": "بیشتر"
}

69
Vector/i18n/br.json Normal file
View File

@ -0,0 +1,69 @@
{
"@metadata": {
"authors": [
"Adriendelucca",
"Amire80",
"Fulup",
"Huñvreüs",
"Y-M D"
]
},
"skinname-vector": "Vektor mod kozh (2010)",
"skinname-vector-2022": "Vektor (2022)",
"vector-specialversion-name": "Vektor",
"vector-skin-desc": "Pourchas a ra 2 wiskadur Vektor:\n* 2011 - Stumm modern MonoBook freskaet e dres hag ennañ meur a wellaenn implijout\n* 2022 - Vektor aozet evel perzh eus raktres [[mw:Desktop Improvements|Gwellaat ar burev]] ar WMF.",
"prefs-vector-enable-vector-1-label": "Ober gant stumm kozh Vektor",
"prefs-vector-enable-vector-1-help": "E-pad ar bloavezhioù a zeu e vo nevesaet ar gwiskadur Vektor tamm-ha-tamm. Gant stumm kozh Vektor e chelloch gwelout stumm Vektor eus miz Du 2019. Evit gouzout hiroch diwar-benn an nevesaat, kit da [[mw:Reading/Web/Desktop_Improvements|bajenn ar raktres]].",
"vector-opt-out": "Distreiñ d'an tres kozh",
"vector-opt-out-tooltip": "Kemmañ hoc'h arventennoù evit distreiñ da dres kozh ar gwiskadur (Vector istorel)",
"vector.css": "/* Kement CSS a zo amañ a vo karget evit implijerien ar gwiskadur Vektor */",
"vector.js": "/* Kement JavaScript a zo amañ a vo karget evit implijerien ar gwiskadur Vektor */",
"vector-action-toggle-sidebar": "Diskwel/kuzhat ar varrenn gostez",
"vector-languages": "Yezhoù",
"vector-language-button-aria-label": "Mont dur pennad en ur yezh all. {{PLURAL:$1|$1 yezh}} a zo.",
"vector-language-button-label": "{{PLURAL:$1|$1 yezh}}",
"vector-no-language-button-label": "Ouzhpennañ yezhoù",
"vector-no-language-button-aria-label": "Neus eus ar pennad-mañ nemet er yezh-mañ. Ouzhpennit ar pennad e yezhoù all.",
"vector-language-redirect-to-top": "Er {{SITENAME}}-mañ emañ al liammoù yezh e laez ar bajenn a-dal da titl ar pennad. [[#p-lang-btn|Mont dan deroù]].",
"vector-language-variant-switcher-label": "Kemmañ adstumm yezh",
"vector-action-addsection": "Rannbennad nevez",
"vector-action-delete": "Diverkañ",
"vector-action-move": "Adenvel",
"vector-action-protect": "Gwareziñ",
"vector-action-undelete": "Diziverkañ",
"vector-action-unprotect": "Kemmañ ar gwarez",
"vector-view-create": "Krouiñ",
"vector-view-edit": "Kemmañ",
"vector-view-history": "Gwelet an istor",
"vector-view-view": "Lenn",
"vector-view-viewsource": "Sellet ouzh tarzh an destenn",
"vector-jumptonavigation": "Mont dar merdeerezh",
"vector-jumptosearch": "Mont dar chlask",
"vector-jumptocontent": "Mont dan endalchad",
"vector-more-actions": "Muioc'h",
"vector-search-loader": "O kargañ alioù klask",
"vector-searchsuggest-containing": "Klask pajennoù a zo <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong> enno",
"vector-intro-page": "Help:Introduction",
"vector-toc-label": "Taolenn",
"vector-toc-beginning": "Deroù",
"vector-toc-toggle-button-label": "Diskwel/kuzhat isrann $1",
"vector-anon-user-menu-pages": "Pajennoù evit implijerien digevreet",
"vector-anon-user-menu-pages-learn": "gouzout hiroc'h",
"vector-anon-user-menu-pages-label": "Gouzout hiroch a-zivout degas kemmoù",
"vector-main-menu-tooltip": "Lañser pennañ",
"vector-toc-menu-tooltip": "Taolenn",
"vector-toc-collapsible-button-label": "Gwintañ an daolenn",
"vector-site-nav-label": "Lec'hienn",
"vector-main-menu-label": "Meuziad pennañ",
"vector-limited-width-toggle": "Gwintañ mod ledander endalchad bihanet",
"vector-page-tools-label": "Ostilhoù",
"vector-page-tools-general-label": "Hollek",
"vector-page-tools-actions-label": "Oberoù",
"vector-pin-element-label": "mont dar varrenn gostez",
"vector-unpin-element-label": "kuzhat",
"vector-2022-prefs-talkpage": "[[mw:Talk:Reading/Web/Desktop_Improvements|Kaozeadenn]]",
"tooltip-vector-anon-user-menu-title": "Muioc'h a zibaboù",
"vector-prefs-limited-width": "Gweredekaat mod ledander bihanet",
"vector-prefs-limited-width-help": "Gweredekaat mod ledander bihanet evit lenn gwelloch",
"empty-language-selector-body": "Neus ket eus endalchad ar bajenn e yezhoù all."
}

17
Vector/i18n/brh.json Normal file
View File

@ -0,0 +1,17 @@
{
"@metadata": {
"authors": [
"Imdadb"
]
},
"vector-action-addsection": "Púskun sarhál",
"vector-action-delete": "Mesa",
"vector-action-move": "Surif",
"vector-action-protect": "Rakk",
"vector-view-create": "Biná",
"vector-view-edit": "Radbadal",
"vector-view-history": "Lekav e ur",
"vector-view-view": "Xuán",
"vector-view-viewsource": "Bumpad e ur",
"vector-more-actions": "Pen"
}

17
Vector/i18n/brx.json Normal file
View File

@ -0,0 +1,17 @@
{
"@metadata": {
"authors": [
"Brxeditor",
"Mr. Nijwmsa Boro",
"Ⓝⓘⓙⓦⓜ",
"ⓝⓘⓙⓦⓜ"
]
},
"vector-action-move": "दोरोद",
"vector-action-protect": "रैखा खालाम",
"vector-view-create": "दा",
"vector-view-edit": "सोलाय",
"vector-view-history": "जारिमिन नाय",
"vector-view-view": "फराय",
"vector-more-actions": "गोबां"
}

67
Vector/i18n/bs.json Normal file
View File

@ -0,0 +1,67 @@
{
"@metadata": {
"authors": [
"CERminator",
"DzWiki",
"Edinwiki",
"KWiki",
"Semso98",
"Srdjan m",
"Srđan"
]
},
"skinname-vector": "Stari Vector (2010)",
"vector-skin-desc": "Pruža 2 Vector skina:\n* 2011 - Moderna verzija MonoBook-a sa svježim izgledom i mnogim poboljšanjima upotrebljivosti.\n* 2022 - Vector napravljen kao dio WMF projekta [[mw:Desktop Improvements]].",
"prefs-vector-enable-vector-1-label": "Koristi stari Vector",
"prefs-vector-enable-vector-1-help": "Kroz narednih nekoliko godina postepeno ćemo ažurirati temu Vector. Stari Vector pružit će Vam mogućnost da koristite raniju verziju Vectora (zamrznutu u decembru 2019). Za detalje o ažuriranjima, posjetite našu [[mw:Reading/Web/Desktop_Improvements|projektnu stranicu]].",
"vector-opt-out": "Prebaci na stari izgled",
"vector-opt-out-tooltip": "Promijenite postavke da biste vratili stari izgled teme (stari Vector)",
"vector-action-toggle-sidebar": "Uključi/isključi bočnu traku",
"vector-languages": "Jezici",
"vector-language-button-aria-label": "Idi na članak na drugom jeziku. Dostupno na {{PLURAL:$1| $1 jeziku | $1 jezika}}",
"vector-language-button-label": "{{PLURAL:$1|$1 jezik|$1 jezika}}",
"vector-no-language-button-label": "Dodaj jezike",
"vector-no-language-button-aria-label": "Ovaj članak postoji samo na ovom jeziku. Dodaj članak za druge jezike",
"vector-language-redirect-to-top": "Linkovi na druge jezike nalaze se u gornjem desnom uglu stranice pored naslova članka. [[#p-lang-btn|Idi na vrh]].",
"vector-language-variant-switcher-label": "Promijeni varijantu jezika",
"vector-action-addsection": "Dodaj temu",
"vector-action-delete": "Izbriši",
"vector-action-move": "Premjesti",
"vector-action-protect": "Zaštiti",
"vector-action-undelete": "Vrati izbrisano",
"vector-action-unprotect": "Promijeni zaštitu",
"vector-view-create": "Napravi",
"vector-view-edit": "Uredi",
"vector-view-history": "Historija",
"vector-view-view": "Čitaj",
"vector-view-viewsource": "Pogledaj izvor",
"vector-jumptonavigation": "Idi na navigaciju",
"vector-jumptosearch": "Idi na pretragu",
"vector-jumptocontent": "Idi na sadržaj",
"vector-more-actions": "Više",
"vector-search-loader": "Učitavam prijedloge pretrage",
"vector-searchsuggest-containing": "Pretraži stranice koje sadrže <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-intro-page": "Pomoć:Uvod",
"vector-toc-label": "Sadržaj",
"vector-toc-beginning": "Početak",
"vector-toc-toggle-button-label": "Uključi/isključi podsekciju $1",
"vector-anon-user-menu-pages": "Stranice za odjavljene urednike",
"vector-anon-user-menu-pages-learn": "detaljnije",
"vector-anon-user-menu-pages-label": "Saznajte više o uređivanju",
"vector-main-menu-tooltip": "Glavni meni",
"vector-toc-menu-tooltip": "Sadržaj",
"vector-toc-collapsible-button-label": "Uključi/isključi sadržaj",
"vector-site-nav-label": "Sajt",
"vector-main-menu-label": "Glavni meni",
"vector-limited-width-toggle": "Uključi/isključi ograničenu širinu sadržaja",
"vector-page-tools-label": "Alati",
"vector-page-tools-general-label": "Općenito",
"vector-page-tools-actions-label": "Radnje",
"vector-pin-element-label": "premjesti na bočnu traku",
"vector-unpin-element-label": "sakrij",
"vector-2022-prefs-talkpage": "[[mw:Talk:Reading/Web/Desktop_Improvements|Razgovor]]",
"tooltip-vector-anon-user-menu-title": "Više opcija",
"vector-prefs-limited-width": "Uključi režim ograničene širine",
"vector-prefs-limited-width-help": "Uključuje režim ograničene širine za poboljšano iskustvo čitanja.",
"empty-language-selector-body": "Sadržaj stranice nije podržan na drugim jezicima."
}

27
Vector/i18n/btm.json Normal file
View File

@ -0,0 +1,27 @@
{
"@metadata": {
"authors": [
"Amire80",
"Apundung",
"IHLubis",
"Simartampua",
"Veracious"
]
},
"vector-languages": "Saro",
"vector-language-button-label": "{{PLURAL:$1|$1 saro}}",
"vector-no-language-button-label": "Manambai saro",
"vector-action-addsection": "Baen tema",
"vector-action-delete": "Apus",
"vector-action-move": "Pindah",
"vector-action-protect": "Jagoon",
"vector-view-create": "Baen",
"vector-view-edit": "Pature",
"vector-view-history": "Sise sejarah",
"vector-view-view": "Baca",
"vector-more-actions": "Lainna",
"vector-searchsuggest-containing": "Jalaki tompat na marisi <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-page-tools-label": "Peralatan",
"vector-page-tools-general-label": "Umum",
"vector-unpin-element-label": "onjabkon"
}

19
Vector/i18n/bto.json Normal file
View File

@ -0,0 +1,19 @@
{
"@metadata": {
"authors": [
"Filipinayzd"
]
},
"vector-action-addsection": "Magrugang sa paksa",
"vector-action-delete": "Puraon",
"vector-action-move": "Ilipat",
"vector-action-protect": "Protektaran",
"vector-action-undelete": "Ibalik",
"vector-action-unprotect": "Ribayan a proteksyon",
"vector-view-create": "Gumibo",
"vector-view-edit": "Balyowan",
"vector-view-history": "Baydon a kasaysayan",
"vector-view-view": "Basahon",
"vector-view-viewsource": "Baydon a ginikanan",
"vector-more-actions": "Dakul pa"
}

10
Vector/i18n/bug-bugi.json Normal file
View File

@ -0,0 +1,10 @@
{
"@metadata": {
"authors": [
"Amire80"
]
},
"vector-view-create": "ᨆᨙᨅᨘ",
"vector-view-view": "ᨅᨌ",
"vector-more-actions": "ᨒᨕᨗᨊᨕᨙ"
}

15
Vector/i18n/bug.json Normal file
View File

@ -0,0 +1,15 @@
{
"@metadata": {
"authors": [
"Kurniasan",
"Notanotheramy",
"Amire80"
]
},
"vector-action-move": "Paléccé'",
"vector-view-create": "Ebbu",
"vector-view-edit": "Padéccéng",
"vector-view-view": "Baca",
"vector-view-viewsource": "Ita sumber",
"vector-more-actions": "ᨒᨕᨗᨊᨕᨙ"
}

16
Vector/i18n/bxr.json Normal file
View File

@ -0,0 +1,16 @@
{
"@metadata": {
"authors": [
"Bjargal",
"Elvonudinium"
]
},
"vector-action-addsection": "Һэдэб нэмэхэ",
"vector-action-delete": "Усадхаха",
"vector-action-move": "Зөөхэ",
"vector-view-create": "Үүдхэхэ",
"vector-view-edit": "Заһабарилха",
"vector-view-history": "Түүхые хараха",
"vector-view-view": "Уншаха",
"vector-view-viewsource": "эшэ үндэһэндэнь хандаха"
}

72
Vector/i18n/ca.json Normal file
View File

@ -0,0 +1,72 @@
{
"@metadata": {
"authors": [
"Abella",
"Aleator",
"Amire80",
"Anskar",
"Calak",
"Fitoschido",
"Paucabot",
"SMP",
"Ssola",
"Toniher",
"Townie",
"Vriullop"
]
},
"skinname-vector": "Vector (versió 2010)",
"vector-skin-desc": "Proporciona dues aparences Vector:\n* 2011 - La versió moderna de MonoBook amb aspecte refrescat i moltes millores d'usabilitat.\n* 2022 - La versió Vector construïda com a part del projecte [[mw:Desktop Improvements]] de la Fundació Wikimedia.",
"prefs-vector-enable-vector-1-label": "Usa la versió antiga de Vector",
"prefs-vector-enable-vector-1-help": "En els propers anys, s'anirà actualitzant gradualment l'aparença Vector. La versió antiga de Vector us permet deixar-la tal com està a desembre de 2019. Per a saber més sobre les actualitzacions, vegeu la [[mw:Reading/Web/Desktop_Improvements|pàgina del projecte]].",
"vector-opt-out": "Canvia a l'aspecte d'abans",
"vector-opt-out-tooltip": "Canvia la configuració per tornar a l'aspecte anterior de l'aparença (Vector heretat)",
"vector-action-toggle-sidebar": "Mostra o oculta la barra lateral",
"vector-languages": "Llengües",
"vector-language-button-aria-label": "Vés a un article en una altra llengua. Disponible en {{PLURAL:$1|$1 llengua|$1 llengües}}",
"vector-language-button-label": "{{PLURAL:$1|$1 llengua|$1 llengües}}",
"vector-no-language-button-label": "Afegeix llengües",
"vector-no-language-button-aria-label": "Aquest article només existeix en aquesta llengua. Afegiu l'article per a altres llengües",
"vector-language-redirect-to-top": "En aquest projecte {{SITENAME}}, els enllaços de llengua són a dalt de la pàgina a l'altre costat del títol. [[#p-lang-btn|Vés a dalt]].",
"vector-language-variant-switcher-label": "Canvia la variant de llengua",
"vector-action-addsection": "Afegeix un tema",
"vector-action-delete": "Esborra",
"vector-action-move": "Reanomena",
"vector-action-protect": "Protegeix",
"vector-action-undelete": "Restaura",
"vector-action-unprotect": "Desprotegeix",
"vector-view-create": "Crea",
"vector-view-edit": "Modifica",
"vector-view-history": "Mostra l'historial",
"vector-view-view": "Mostra",
"vector-view-viewsource": "Mostra el codi",
"vector-jumptonavigation": "Salta a la navegació",
"vector-jumptosearch": "Salta a la cerca",
"vector-jumptocontent": "Vés al contingut",
"vector-more-actions": "Més",
"vector-search-loader": "Carregant els suggeriments de cerca",
"vector-searchsuggest-containing": "Cerca les pàgines que continguin <strong class=\"cdx-typeahead-search__search-footer__query\">$1</strong>",
"vector-intro-page": "Help:Introducció",
"vector-toc-label": "Contingut",
"vector-toc-beginning": "Inici",
"vector-toc-toggle-button-label": "Commuta la subsecció $1",
"vector-anon-user-menu-pages": "Pàgines per a editors no registrats",
"vector-anon-user-menu-pages-learn": "més informació",
"vector-anon-user-menu-pages-label": "Vegeu més informació sobre l'edició",
"vector-main-menu-tooltip": "Menú principal",
"vector-toc-menu-tooltip": "Taula de continguts",
"vector-toc-collapsible-button-label": "Commuta la taula de continguts.",
"vector-site-nav-label": "Lloc",
"vector-main-menu-label": "Menú principal",
"vector-limited-width-toggle": "Commuta la limitació d'amplada del contingut",
"vector-page-tools-label": "Eines",
"vector-page-tools-general-label": "General",
"vector-page-tools-actions-label": "Accions",
"vector-pin-element-label": "mou a la barra lateral",
"vector-unpin-element-label": "amaga",
"vector-2022-prefs-talkpage": "[[mw:Talk:Reading/Web/Desktop_Improvements|Discussió]]",
"tooltip-vector-anon-user-menu-title": "Més opcions",
"vector-prefs-limited-width": "Activa el mode d'amplada limitada",
"vector-prefs-limited-width-help": "Activa el mode d'amplada limitada per una millor experiència de lectura.",
"empty-language-selector-body": "El contingut de la pàgina no s'admet en altres llengües."
}

13
Vector/i18n/cak.json Normal file
View File

@ -0,0 +1,13 @@
{
"@metadata": {
"authors": [
"Chocoj"
]
},
"vector-action-addsection": "K'ak'a' peraj",
"vector-view-create": "Tatz'uku'",
"vector-view-edit": "Tanuk'u'",
"vector-view-history": "Tatz'eta' ri natab'äl",
"vector-view-view": "Tasik'ij",
"vector-more-actions": "Ch'aqa chik"
}

11
Vector/i18n/cbk-zam.json Normal file
View File

@ -0,0 +1,11 @@
{
"@metadata": {
"authors": [
"WikiEditor50"
]
},
"vector-view-create": "Crea",
"vector-view-edit": "Revisa",
"vector-view-view": "Lee",
"vector-more-actions": "Mas"
}

Some files were not shown because too many files have changed in this diff Show More