Merge branch 'master' into HEAD

Change-Id: I220fbc57ee20d2a6717b39dba809401de2207ce0
This commit is contained in:
jdlrobson 2018-01-02 13:21:16 -08:00
commit 6598c1e7c3
259 changed files with 1303 additions and 587 deletions

5
.gitignore vendored
View File

@ -1,4 +1,7 @@
node_modules/
# JSDuck output
/docs/
/node_modules/
/vendor
/composer.lock
/composer.phar

View File

@ -1,11 +1,11 @@
<?xml version="1.0"?>
<ruleset>
<rule ref="./vendor/mediawiki/mediawiki-codesniffer/MediaWiki">
<exclude name="Generic.Files.OneObjectStructurePerFile.MultipleFound" />
<exclude name="MediaWiki.NamingConventions.LowerCamelFunctionsName.FunctionName"/>
<exclude name="MediaWiki.WhiteSpace.SpaceBeforeSingleLineComment.NewLineComment"/>
<exclude name="MediaWiki.Commenting.FunctionComment.MissingParamComment"/>
<exclude name="MediaWiki.Files.ClassMatchesFilename.NotMatch" />
<exclude name="MediaWiki.Files.OneClassPerFile.MultipleFound" />
</rule>
<file>.</file>
<arg name="extensions" value="php,php5,inc"/>

103
.rubocop_todo.yml Normal file
View File

@ -0,0 +1,103 @@
# This configuration was generated by
# `rubocop --auto-gen-config`
# on 2017-12-06 12:25:18 +0000 using RuboCop version 0.51.0.
# The point is for the user to remove these configuration records
# one by one as the offenses are removed from the code base.
# Note that changes in the inspected code, or installation of new
# versions of RuboCop, may require this file to be generated again.
# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: auto_detection, squiggly, active_support, powerpack, unindent
Layout/IndentHeredoc:
Exclude:
- 'tests/browser/features/step_definitions/create_page_api_steps.rb'
# Offense count: 7
Lint/AmbiguousRegexpLiteral:
Exclude:
- 'tests/browser/features/step_definitions/common_article_steps.rb'
- 'tests/browser/features/step_definitions/common_steps.rb'
- 'tests/browser/features/step_definitions/language_icon_steps.rb'
- 'tests/browser/features/step_definitions/language_steps.rb'
- 'tests/browser/features/step_definitions/notification_steps.rb'
# Offense count: 1
# Configuration parameters: CountComments.
Metrics/ClassLength:
Max: 131
# Offense count: 42
# Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
# URISchemes: http, https
Metrics/LineLength:
Max: 156
# Offense count: 1
# Configuration parameters: EnforcedStyle, SupportedStyles.
# SupportedStyles: lowercase, uppercase
Naming/HeredocDelimiterCase:
Exclude:
- 'tests/browser/features/step_definitions/create_page_api_steps.rb'
# Offense count: 1
# Configuration parameters: Blacklist.
# Blacklist: END, (?-mix:EO[A-Z]{1})
Naming/HeredocDelimiterNaming:
Exclude:
- 'tests/browser/features/step_definitions/create_page_api_steps.rb'
# Offense count: 2
# Cop supports --auto-correct.
Performance/StringReplacement:
Exclude:
- 'tests/browser/features/step_definitions/common_steps.rb'
# Offense count: 13
Style/Documentation:
Exclude:
- 'spec/**/*'
- 'test/**/*'
- 'tests/browser/features/support/pages/article_page.rb'
- 'tests/browser/features/support/pages/create_article_page.rb'
- 'tests/browser/features/support/pages/diff_page.rb'
- 'tests/browser/features/support/pages/language_page.rb'
- 'tests/browser/features/support/pages/main_page.rb'
- 'tests/browser/features/support/pages/notification_page.rb'
- 'tests/browser/features/support/pages/page.rb'
- 'tests/browser/features/support/pages/special_history_page.rb'
- 'tests/browser/features/support/pages/special_mobilediff_page.rb'
- 'tests/browser/features/support/pages/special_search_page.rb'
- 'tests/browser/features/support/pages/special_userlogin_page.rb'
- 'tests/browser/features/support/pages/user_page.rb'
# Offense count: 1
Style/MixinUsage:
Exclude:
- 'tests/browser/features/support/pages/special_history_page.rb'
# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: Whitelist.
# Whitelist: be, be_a, be_an, be_between, be_falsey, be_kind_of, be_instance_of, be_truthy, be_within, eq, eql, end_with, include, match, raise_error, respond_to, start_with
Style/NestedParenthesizedCalls:
Exclude:
- 'tests/browser/features/step_definitions/search_steps.rb'
# Offense count: 3
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, SupportedStyles, AllowInnerSlashes.
# SupportedStyles: slashes, percent_r, mixed
Style/RegexpLiteral:
Exclude:
- 'tests/browser/features/step_definitions/search_steps.rb'
- 'tests/browser/features/support/pages/user_page.rb'
# Offense count: 1
# Cop supports --auto-correct.
# Configuration parameters: IgnoredMethods.
# IgnoredMethods: respond_to, define_method
Style/SymbolProc:
Exclude:
- 'tests/browser/features/support/hooks.rb'

View File

@ -4,4 +4,4 @@ gem 'chunky_png', '~> 1.3.4'
gem 'mediawiki_selenium', '~> 1.7', '>= 1.7.3'
gem 'page-object', '1.1.0'
gem 'rake', '~> 10.4', '>= 10.4.2'
gem 'rubocop', '~> 0.29.1', require: false
gem 'rubocop', '~> 0.51.0', require: false

View File

@ -1,9 +1,7 @@
GEM
remote: https://rubygems.org/
specs:
ast (2.2.0)
astrolabe (1.3.1)
parser (~> 2.2)
ast (2.3.0)
builder (3.2.2)
childprocess (0.5.9)
ffi (~> 1.0, >= 1.0.11)
@ -64,10 +62,12 @@ GEM
watir-webdriver (>= 0.6.11)
page_navigation (0.9)
data_magic (>= 0.14)
parser (2.3.0.7)
ast (~> 2.2)
parallel (1.12.0)
parser (2.4.0.2)
ast (~> 2.3)
powerpack (0.1.1)
rainbow (2.1.0)
rainbow (2.2.2)
rake
rake (10.5.0)
rest-client (1.8.0)
http-cookie (>= 1.0.2, < 2.0)
@ -76,14 +76,15 @@ GEM
rspec-core (2.99.2)
rspec-expectations (2.99.2)
diff-lcs (>= 1.1.3, < 2.0)
rubocop (0.29.1)
astrolabe (~> 1.3)
parser (>= 2.2.0.1, < 3.0)
rubocop (0.51.0)
parallel (~> 1.10)
parser (>= 2.3.3.1, < 3.0)
powerpack (~> 0.1)
rainbow (>= 1.99.1, < 3.0)
ruby-progressbar (~> 1.4)
ruby-progressbar (1.8.0)
rubyzip (1.2.0)
rainbow (>= 2.2.2, < 3.0)
ruby-progressbar (~> 1.7)
unicode-display_width (~> 1.0, >= 1.0.1)
ruby-progressbar (1.9.0)
rubyzip (1.2.1)
selenium-webdriver (2.53.0)
childprocess (~> 0.5)
rubyzip (~> 1.0)
@ -93,6 +94,7 @@ GEM
unf (0.1.4)
unf_ext
unf_ext (0.0.7.2)
unicode-display_width (1.3.0)
watir-webdriver (0.9.1)
selenium-webdriver (>= 2.46.2)
websocket (1.2.3)
@ -106,4 +108,7 @@ DEPENDENCIES
mediawiki_selenium (~> 1.7, >= 1.7.3)
page-object (= 1.1.0)
rake (~> 10.4, >= 10.4.2)
rubocop (~> 0.29.1)
rubocop (~> 0.51.0)
BUNDLED WITH
1.16.0

View File

@ -56,10 +56,12 @@ Controls which page actions, if any, are displayed. Allowed: `edit`, `watch`, `t
Make the logos configurable.
Currently, `copyright`, `copyright-width`, and `copyright-height` elements are
Currently, `copyright`, `copyright-fallback`, `copyright-width`, and `copyright-height` elements are
supported.
* `copyright` is the URL of the logo displayed in the header and footer
* `copyright-fallback` is the URL of the fallback logo displayed on
non-supported browsers like IE8 or Opera Mini
* `copyright-width` (optional) is the width in pixels of the copyright image
you want to display
* `copyright-height` (optional) is the height in pixels of the copyright image
@ -79,6 +81,16 @@ Example:
]
```
Example with fallback URL:
```php
[
'copyright' => '/images/mysite_copyright_logo.svg',
'copyright-fallback' => '/images/mysite_copyright_logo.svg.png',
'copyright-width' => 100,
'copyright-height' => 15,
]
```
* Type: `Array`
* Default: `[]`

View File

@ -1,16 +1,19 @@
{
"require-dev": {
"jakub-onderka/php-parallel-lint": "0.9.2",
"mediawiki/mediawiki-codesniffer": "14.1.0",
"jakub-onderka/php-console-highlighter": "0.3.2"
"mediawiki/mediawiki-codesniffer": "15.0.0",
"jakub-onderka/php-console-highlighter": "0.3.2",
"mediawiki/minus-x": "0.2.1"
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor --exclude node_modules",
"phpcs -p -s"
"phpcs -p -s",
"minus-x check ."
],
"fix": [
"phpcbf"
"phpcbf",
"minus-x fix ."
]
}
}

View File

@ -1,16 +1,18 @@
#!/usr/bin/env bash
found=0
find resources -type f -name '*.svg' |
while read svgfile; do
while read -r svgfile; do
outfile="$svgfile.tmp"
echo -n "Checking compression: $svgfile ... "
node_modules/.bin/svgo --config .svgo.yml -i "$svgfile" -o "$outfile" -q
if [ $(wc -c < "$svgfile") -gt $(wc -c < "$outfile") ]; then
echo "File $svgfile is not compressed."
if [ "$(wc -c < "$svgfile")" -gt "$(wc -c < "$outfile")" ]; then
echo -e "\nERR> file $svgfile is not compressed."
found=$((found + 1))
else
echo "OK"
fi
rm "$outfile"
done
done < <(find resources -type f -name '*.svg')
if [ $found -gt 0 ]; then
echo "Found $found uncompressed SVG files. Please compress the files and re-submit the patch."

View File

@ -1,6 +1,8 @@
{
"@metadata": {
"authors": []
"authors": [
"Si Gam Acèh"
]
},
"mobile-frontend-editor-edit": "Andam",
"mobile-frontend-home-button": "Keue",
@ -13,4 +15,4 @@
"mobile-frontend-pageaction-edit-tooltip": "Andam bagian ateuëh miëng nyoë",
"mobile-frontend-placeholder": "Mita {{SITENAME}}",
"mobile-frontend-random-button": "Beurangkari"
}
}

View File

@ -1,6 +1,9 @@
{
"@metadata": {
"authors": []
"authors": [
"Amire80",
"SamGamgee"
]
},
"mobile-frontend-editor-edit": "ЕӀаз",
"mobile-frontend-home-button": "Унэм",
@ -13,4 +16,4 @@
"mobile-frontend-pageaction-edit-tooltip": "Мы нэкӀубгъом и секцие шъхьаӀэм еӀэзэн.",
"mobile-frontend-placeholder": "{{SITENAME}}-ым лъыхъу",
"mobile-frontend-random-button": "ОшӀэдэмышӀ"
}
}

View File

@ -1,6 +1,8 @@
{
"@metadata": {
"authors": []
"authors": [
"Csisc"
]
},
"mobile-frontend-editor-edit": "بدّل",
"mobile-frontend-language-article-heading": "أقرا بلغة أخرى",
@ -9,4 +11,4 @@
"mobile-frontend-pageaction-edit-tooltip": "تبديل طرف المقدمة في هذي الپاج.",
"mobile-frontend-placeholder": "لوّج في {{SITENAME}}",
"mobile-frontend-random-button": "بالزهر"
}
}

View File

@ -1,6 +1,8 @@
{
"@metadata": {
"authors": []
"authors": [
"Csisc"
]
},
"mobile-frontend-editor-edit": "Beddil",
"mobile-frontend-home-button": "Il-pāj il-ewelēniye",
@ -12,4 +14,4 @@
"mobile-frontend-pageaction-edit-tooltip": "Beddil fiţ-ţarf mtēģ il-muqeddme mtēģ il-pāj hēđi.",
"mobile-frontend-placeholder": "Lawwij fî {{SITENAME}}",
"mobile-frontend-random-button": "B- iz-zhar"
}
}

View File

@ -1,6 +1,9 @@
{
"@metadata": {
"authors": []
"authors": [
"Fwolff",
"Naudefj"
]
},
"mobile-frontend-editor-cta": "Help om dié bladsy te verbeter!",
"mobile-frontend-editor-edit": "Wysig",
@ -10,7 +13,6 @@
"mobile-frontend-editor-tutorial-cancel": "Nee dankie",
"mobile-frontend-editor-tutorial-confirm": "Begin redigeer",
"mobile-frontend-editor-undo-unsupported": "Ontdoen is tans nie moontlik op selfone nie.",
"mobile-frontend-footer-sitename": "{{SITENAME}}",
"mobile-frontend-history": "Wys wysigingsgeskiedenis van dié bladsy.",
"mobile-frontend-home-button": "Tuisblad",
"mobile-frontend-language-article-heading": "Lees in 'n ander taal",
@ -35,4 +37,4 @@
"mobile-frontend-user-page-member-since": "{{GENDER:$2|Aangesluit}} op $1",
"mobile-frontend-user-page-talk": "Bespreking",
"mobile-frontend-user-page-uploads": "Opgelaai"
}
}

View File

@ -1,7 +1,5 @@
{
"@metadata": {
"authors": []
},
"@metadata": [],
"mobile-frontend-home-button": "Fie",
"mobile-frontend-random-button": "Randɔm"
}
}

View File

@ -1,7 +1,5 @@
{
"@metadata": {
"authors": []
},
"@metadata": [],
"mobile-frontend-home-button": "ቤት",
"mobile-frontend-random-button": "በነሲብ"
}
}

View File

@ -1,10 +1,12 @@
{
"@metadata": {
"authors": []
"authors": [
"Carlos Cristia"
]
},
"mobile-frontend-editor-edit": "Editar",
"mobile-frontend-home-button": "Portalada",
"mobile-frontend-main-menu-login": "Encetar sesión",
"mobile-frontend-placeholder": "Mirar en {{SITENAME}}",
"mobile-frontend-random-button": "Aliatorio"
}
}

View File

@ -1,6 +1,10 @@
{
"@metadata": {
"authors": []
"authors": [
"Espreon",
"Gott wisst",
"JJohnson1701"
]
},
"mobile-frontend-editor-edit": "Ādihtan",
"mobile-frontend-home-button": "Hām",
@ -15,4 +19,4 @@
"mobile-frontend-pageaction-edit-tooltip": "Adihtan þone forman dǣl þisses trametes.",
"mobile-frontend-placeholder": "Sēcan on {{SITENAME}}",
"mobile-frontend-random-button": "Wēasgelimplic"
}
}

View File

@ -1,6 +1,9 @@
{
"@metadata": {
"authors": []
"authors": [
"Angpradesh",
"Samyo"
]
},
"mobile-frontend-editor-edit": "संपादन करऽ",
"mobile-frontend-home-button": "मुखपृष्ठ",
@ -13,4 +16,4 @@
"mobile-frontend-pageaction-edit-tooltip": "इ पन्ना केरऽ भूमिका क॑ सम्पादित करऽ",
"mobile-frontend-placeholder": "{{SITENAME}} मं॑ खोजऽ",
"mobile-frontend-random-button": "बेतरतीब"
}
}

View File

@ -1,7 +1,9 @@
{
"@metadata": {
"authors": []
"authors": [
"Basharh"
]
},
"mobile-frontend-home-button": "ܪܝܫܝܬܐ",
"mobile-frontend-random-button": "ܚܘܝܚܐܝܬ"
}
}

View File

@ -1,9 +1,11 @@
{
"@metadata": {
"authors": []
"authors": [
"Fiestoforo"
]
},
"mobile-frontend-editor-edit": "Kümeelün",
"mobile-frontend-home-button": "Llitun",
"mobile-frontend-main-menu-login": "Konkülen",
"mobile-frontend-pageaction-edit-tooltip": "Elkünufinge tüfachi pakina ñi ünengechi trokiñ."
}
}

View File

@ -1,6 +1,9 @@
{
"@metadata": {
"authors": []
"authors": [
"Bachounda",
"GeekEmad"
]
},
"mobile-frontend-editor-edit": "بدّل",
"mobile-frontend-home-button": "اللوله",
@ -13,4 +16,4 @@
"mobile-frontend-pageaction-edit-tooltip": "اكتب طرف المقدمه في هاد الباجه.",
"mobile-frontend-placeholder": "حوس في {{SITENAME}}",
"mobile-frontend-random-button": "زهراني"
}
}

View File

@ -1,7 +1,5 @@
{
"@metadata": {
"authors": []
},
"@metadata": [],
"mobile-frontend-home-button": "Sṫiqbal",
"mobile-frontend-random-button": "Ĝel l-lah"
}
}

View File

@ -1,6 +1,8 @@
{
"@metadata": {
"authors": []
"authors": [
"Ghaly"
]
},
"mobile-frontend-editor-edit": "تعديل",
"mobile-frontend-home-button": "البيت",
@ -13,4 +15,4 @@
"mobile-frontend-pageaction-edit-tooltip": "تعديل مقدمة الصفحه.",
"mobile-frontend-placeholder": "دور فى {{SITENAME}}",
"mobile-frontend-random-button": "عشوائى"
}
}

View File

@ -1,9 +1,13 @@
{
"@metadata": {
"authors": []
"authors": [
"Bishnu Saikia",
"Gitartha.bordoloi",
"IKHazarika",
"Nilamdyuti"
]
},
"mobile-frontend-editor-edit": "সম্পাদনা কৰক",
"mobile-frontend-footer-sitename": "{{SITENAME}}",
"mobile-frontend-home-button": "বেটুপাত",
"mobile-frontend-language-article-heading": "অন্য ভাষাত পঢ়ক",
"mobile-frontend-logged-in-homepage-notification": "আদৰিছোঁ, $1!",
@ -18,4 +22,4 @@
"mobile-frontend-pageaction-edit-tooltip": "এই পৃষ্ঠাৰ শীৰ্ষ অনুচ্ছেদ সম্পাদনা কৰক।",
"mobile-frontend-placeholder": "সন্ধান কৰক {{SITENAME}}",
"mobile-frontend-random-button": "যিকোনো"
}
}

View File

@ -1,8 +1,10 @@
{
"@metadata": {
"authors": []
"authors": [
"Icemandeaf"
]
},
"mobile-frontend-editor-edit": "M521x532S10609498x496S10621487x512S21100500x483S2df20479x468",
"mobile-frontend-main-menu-login": "M538x521S2a200497x480S20b00462x508S11530523x482S15a37462x483S11551470x493",
"mobile-frontend-main-menu-watchlist": "M526x524S10e50511x494S26500510x476S10e58475x494S26510477x476 M519x539S14402488x485S1440a481x461S22b04503x509"
}
}

View File

@ -1,6 +1,11 @@
{
"@metadata": {
"authors": []
"authors": [
"Amqui",
"Benoit Rochon",
"Jean-paul echaquan",
"Ninmeka"
]
},
"mobile-frontend-editor-edit": "Meckotcita",
"mobile-frontend-home-button": "Otitikowin",
@ -16,4 +21,4 @@
"mobile-frontend-random-button": "Arotc",
"mobile-frontend-user-page-contributions": "Witcihewin",
"mobile-frontend-user-page-talk": "Ka ici arimowaniok"
}
}

View File

@ -1,9 +1,11 @@
{
"@metadata": {
"authors": []
"authors": [
"Gazimagomedov",
"Аль-Гимравий"
]
},
"mobile-frontend-editor-edit": "Хисизабизе",
"mobile-frontend-footer-sitename": "{{SITENAME}}",
"mobile-frontend-home-button": "Рукъ",
"mobile-frontend-language-article-heading": "Цоги мацӀалда цӀализе",
"mobile-frontend-main-menu-button-tooltip": "Аслияб меню рагьизе",
@ -14,4 +16,4 @@
"mobile-frontend-placeholder": "{{grammar:prepositional|{{SITENAME}}}}-алда хъирщизе",
"mobile-frontend-random-button": "Цебе ккараб",
"mobile-frontend-user-page-talk": "Гьоркьоб лъей"
}
}

View File

@ -1,6 +1,8 @@
{
"@metadata": {
"authors": []
"authors": [
"1AnuraagPandey"
]
},
"mobile-frontend-editor-edit": "सम्पादन",
"mobile-frontend-home-button": "घर",
@ -13,4 +15,4 @@
"mobile-frontend-pageaction-edit-tooltip": "इ पन्ना कय भूमिका सम्पादित करा जाय।",
"mobile-frontend-placeholder": "{{SITENAME}} में खोजा जाय",
"mobile-frontend-random-button": "कवनो भी एक"
}
}

View File

@ -1,6 +1,12 @@
{
"@metadata": {
"authors": []
"authors": [
"Cekli829",
"Dağlı95",
"Interfase",
"PPerviz",
"Wertuose"
]
},
"mobile-frontend-editor-edit": "Redaktə",
"mobile-frontend-history": "Bu səhifənin dəyişikliklər tarixinə bax",
@ -14,4 +20,4 @@
"mobile-frontend-main-menu-watchlist": "İzlədiyim səhifələr",
"mobile-frontend-placeholder": "{{SITENAME}} saytında axtarış",
"mobile-frontend-random-button": "Təsadüfi"
}
}

View File

@ -1,9 +1,13 @@
{
"@metadata": {
"authors": []
"authors": [
"Alp Er Tunqa",
"Amir a57",
"Koroğlu",
"Mousa"
]
},
"mobile-frontend-editor-edit": "دَییشدیر",
"mobile-frontend-footer-sitename": "{{SITENAME}}",
"mobile-frontend-history": "بو صفحه نین گئچمیشین گور",
"mobile-frontend-home-button": "ائو",
"mobile-frontend-language-article-heading": "آیری دیل‌لرده اوخویون.",
@ -20,4 +24,4 @@
"mobile-frontend-random-button": "تصادوفی",
"mobile-frontend-talk-back-to-userpage": "«{{GENDER:$1|$1}}» ایشلدن صفحه‌سینه قایید",
"mobile-frontend-user-page-member-since": "عضویت $1-دن"
}
}

View File

@ -15,6 +15,7 @@
"mobile-frontend-cookies-required": "Ҡарап сығыу режимын үҙгәртергә cookie файлы кәрәк. Уны тоҡандырып, яңынан эшләп ҡарағыҙ.",
"mobile-frontend-editor-blocked-info-loggedin": "Һеҙҙең иҫәп яҙмағыҙҙан мөхәррирләү ябылған. Ябылыуҙы {{GENDER:$2|ҡатнашыусы}} $2 ҡуйған, сәбәбе - $1",
"mobile-frontend-editor-cta": "Был битте яҡшыртырға ярҙам итегеҙ!",
"minerva-pointer-dismiss": "ябырға",
"mobile-frontend-editor-disabled": "Вандализм булдырмау өсөн был бит һаҡланған.",
"mobile-frontend-editor-edit": "Үҙгәртергә",
"mobile-frontend-editor-redlink-create": "Яңы бит яһарға",

View File

@ -1,8 +1,10 @@
{
"@metadata": {
"authors": []
"authors": [
"Joe Watzmo"
]
},
"mobile-frontend-home-button": "Start",
"mobile-frontend-placeholder": "Suach",
"mobile-frontend-random-button": "Zuafoi"
}
}

View File

@ -1,12 +1,13 @@
{
"@metadata": {
"authors": []
"authors": [
"Geopoet"
]
},
"mobile-frontend-editor-cta": "Ika dapat nakalaog na tanganing makapagliwat nin mga pahina na magíwas.",
"mobile-frontend-editor-disabled": "Ika dae tabi pinagtutugutan na magliliwat kaining pahina.",
"mobile-frontend-editor-edit": "Liwaton",
"mobile-frontend-editor-uploadenable": "Pakikarga ngunang enot nin sarong ritrato tangani kang makakapagliwat.",
"mobile-frontend-footer-sitename": "{{SITYONG NGARAN}}",
"mobile-frontend-home-button": "Ginikanan",
"mobile-frontend-language-article-heading": "Basahon sa ibang lengguwahe",
"mobile-frontend-logged-in-homepage-notification": "Marhayong pag-abot, $1!",
@ -23,4 +24,4 @@
"mobile-frontend-random-button": "Purak",
"mobile-frontend-user-button-tooltip": "Ipahiling an sakuyang mga notipikasyon",
"mobile-frontend-user-newmessages": "Ika igwa nin baguhong mga mensahe sa saimong pahina nin orolayan."
}
}

View File

@ -1,6 +1,9 @@
{
"@metadata": {
"authors": []
"authors": [
"Mikalai Udodau",
"Чаховіч Уладзіслаў"
]
},
"mobile-frontend-editor-edit": "Правіць",
"mobile-frontend-editor-tutorial-cancel": "Не, дзякуй",
@ -18,4 +21,4 @@
"mobile-frontend-placeholder": "Шукаць у {{GRAMMAR:месны|{{SITENAME}}}}",
"mobile-frontend-random-button": "Выпадкова",
"mobile-frontend-user-button-tooltip": "Паказаць мае паведамленні"
}
}

View File

@ -12,21 +12,31 @@
]
},
"minerva-last-modified-date": "Последна промяна: в $2, на $1",
"minerva-talk-add-topic": "Добавяне на дискусия",
"mobile-frontend-console-recruit": "\\o/ Хей! Това е софтуер с отворен код и ние имаме нужда от доброволци, които да ни помогнат го да доразработим, да го направим по-добър и да коригираме всички бъгове, които могат да бъдат видяни в конзолата за JavaScript.",
"mobile-frontend-cookies-required": "Необходимо е бисквитките да са включени за смяна на режима на преглед. Моля, включете ги и опитайте отново.",
"mobile-frontend-editor-blocked-info-loggedin": "Вашият акаунт има забрана за редактиране. Забраната е наложена от {{GENDER:$2|$2}} по следната причина: $1",
"mobile-frontend-editor-cta": "Помогнете за подобряването на тази страница!",
"minerva-pointer-dismiss": "Затваряне",
"mobile-frontend-editor-disabled": "Тази страница е защитена с цел предотвратяване на вандализъм.",
"mobile-frontend-editor-edit": "Редактиране",
"minerva-download": "Изтегляне",
"mobile-frontend-editor-redlink-create": "Създаване на страница",
"mobile-frontend-editor-redlink-explain": "Тази страница все още не е създадена.",
"mobile-frontend-editor-redlink-leave": "Не, благодаря.",
"mobile-frontend-editor-tutorial-cancel": "Не, благодаря",
"mobile-frontend-editor-tutorial-confirm": "Започнете да редактирате",
"mobile-frontend-editor-tutorial-confirm": "Начало на редактирането",
"mobile-frontend-editor-tutorial-summary": "Опитайте се да подобрите страница $1. <br />Не се плашете от уики-кода.",
"mobile-frontend-editor-unavailable": "Вашият браузър в момента не поддържа мобилно редактиране. Моля, опитайте с друг браузър.",
"mobile-frontend-editor-undo-unsupported": "Отмяната на операция все още не се поддържа на мобилни устройства.",
"mobile-frontend-editor-uploadenable": "Моля, първо качете снимка, за да можете да редактирате.",
"mobile-frontend-history": "Вижте историята на тази страница.",
"mobile-frontend-home-button": "Начало",
"mobile-frontend-language-article-heading": "Прочитане на друг език",
"mobile-frontend-language-change": "Промяна на езика",
"mobile-frontend-languages-not-available": "Тази страница не е налична на други езици.",
"mobile-frontend-logged-in-homepage-notification": "{{GENDER:$1|Добре дошъл|Добре дошла}}, $1!",
"mobile-frontend-main-menu-button-tooltip": "Отвори главното меню",
"mobile-frontend-main-menu-button-tooltip": "Отваря главното меню",
"mobile-frontend-main-menu-contributions": "Приноси",
"mobile-frontend-main-menu-login": "Влизане",
"mobile-frontend-main-menu-logout": "Излизане",
@ -39,15 +49,19 @@
"mobile-frontend-meta-data-issues-header-talk": "За тази страница",
"mobile-frontend-meta-data-issues-talk": "За тази страница за разговор",
"mobile-frontend-notifications-filter": "Филтриране",
"mobile-frontend-pageaction-edit-tooltip": "Редактиране на водещия раздел на страницата.",
"mobile-frontend-pageaction-edit-tooltip": "Редактиране на водещия раздел на страницата",
"mobile-frontend-placeholder": "Търсене в {{SITENAME}}",
"mobile-frontend-random-button": "Случайна",
"mobile-frontend-redirected-from": "Пренасочване от „$1“",
"mobile-frontend-talk-back-to-filepage": "Назад към файл „$1“.",
"mobile-frontend-talk-back-to-page": "Връщане към „$1“.",
"mobile-frontend-talk-back-to-projectpage": "Назад към проектната страница „$1“.",
"mobile-frontend-talk-back-to-userpage": "Назад към потребителската страница на „{{GENDER:$1|$1}}“.",
"mobile-frontend-user-button-tooltip": "Показване на известия",
"mobile-frontend-user-newmessages": "Имате нови съобщения на Вашата беседа",
"mobile-frontend-user-page-contributions": "Приноси",
"mobile-frontend-user-page-member-since": "{{GENDER:$2|Член}} от $1",
"mobile-frontend-user-page-talk": "Беседа",
"mobile-frontend-user-page-uploads": "Kачвания"
"mobile-frontend-user-page-uploads": "Качвания",
"minerva-skin-desc": "Адаптивен облик преди всичко за мобилна употреба"
}

View File

@ -1,6 +1,9 @@
{
"@metadata": {
"authors": []
"authors": [
"Baloch Afghanistan",
"Ibrahim khashrowdi"
]
},
"mobile-frontend-editor-edit": "ایڈیٹ",
"mobile-frontend-home-button": "گیس",
@ -14,4 +17,4 @@
"mobile-frontend-placeholder": "گشتین بی {{SITENAME}}",
"mobile-frontend-random-button": "تصادفی",
"mobile-frontend-user-page-talk": "حبر/گپ"
}
}

View File

@ -1,10 +1,16 @@
{
"@metadata": {
"authors": []
"authors": [
"Amire80",
"Ganesh",
"Nepaboy",
"SatyamMishra"
]
},
"mobile-frontend-cookies-required": "व्यू के मोड बदले खातिर कुकीज के जरूरत बा। इनहन के चालू करीं आ दोबारा कोसिस करीं।",
"mobile-frontend-editor-blocked-info-loggedin": "राउर खाता के संपादन करे से रोक दिहल गइल बा। रोक {{GENDER:$2|$2}} द्वारा लगावल गइल आ एकर कारण बा: $1",
"mobile-frontend-editor-cta": "एह पन्ना के बेहतर बनावे में मदद करीं!",
"minerva-pointer-dismiss": "रद्द करीं",
"mobile-frontend-editor-disabled": "उतपात रोके खातिर एह पन्ना के सुरक्षित कइल गइल बा।",
"mobile-frontend-editor-edit": "संपादन",
"mobile-frontend-home-button": "घर",
@ -17,4 +23,4 @@
"mobile-frontend-pageaction-edit-tooltip": "ए पन्ना के मुख्य खंड के संपादन करीं",
"mobile-frontend-placeholder": "{{SITENAME}} खोजीं",
"mobile-frontend-random-button": "अट्रेंडम"
}
}

View File

@ -12,6 +12,7 @@
"mobile-frontend-cookies-required": "দর্শন মোডে যেতে কুকিজের প্রয়োজন। দয়া করে তাদের সক্রিয় করে আবার চেষ্টা করুন।",
"mobile-frontend-editor-blocked-info-loggedin": "আপনার অ্যাকাউন্ট সম্পাদনা থেকে অবরুদ্ধ করা হয়েছে। নিম্নলিখিত কারণে {{GENDER:$2|$2}} কর্তৃক আপনি অবরুদ্ধ হয়েছেন: $1",
"mobile-frontend-editor-cta": "এই পাতা উন্নয়নে সাহায্য করুন!",
"minerva-pointer-dismiss": "খারিজ",
"mobile-frontend-editor-disabled": "ধ্বংসপ্রবণতা রোধে এই পাতাটি সুরক্ষিত করা হয়েছে।",
"mobile-frontend-editor-edit": "সম্পাদনা",
"mobile-frontend-editor-redlink-create": "পাতা তৈরি করুন",

View File

@ -1,7 +1,9 @@
{
"@metadata": {
"authors": []
"authors": [
"ཁ་བཏགས་ནག་པོ"
]
},
"mobile-frontend-home-button": "མ་ངོས།",
"mobile-frontend-main-menu-login": "ནང་འཛུ།"
}
}

View File

@ -1,6 +1,8 @@
{
"@metadata": {
"authors": []
"authors": [
"Mogoeilor"
]
},
"mobile-frontend-editor-edit": "ڤیرایئشت کاری",
"mobile-frontend-home-button": "سرآسونه",
@ -13,4 +15,4 @@
"mobile-frontend-pageaction-edit-tooltip": "ڤيرایشت سر بأرجا اي بألگأ.",
"mobile-frontend-placeholder": "پی جوری {{SITENAME}}",
"mobile-frontend-random-button": "بختكی"
}
}

View File

@ -1,11 +1,15 @@
{
"@metadata": {
"authors": []
"authors": [
"Fohanno",
"Fulup",
"Pymouss",
"Y-M D"
]
},
"mobile-frontend-editor-cta": "Sikourit gwellaat ar bajenn-mañ !",
"mobile-frontend-editor-edit": "Aozañ",
"mobile-frontend-editor-tutorial-confirm": "Kregiñ da aozañ",
"mobile-frontend-footer-sitename": "{{SITENAME}}",
"mobile-frontend-home-button": "Degemer",
"mobile-frontend-language-article-heading": "Lenn en ur yezh all",
"mobile-frontend-logged-in-homepage-notification": "Degemer mat, $1 !",
@ -25,4 +29,4 @@
"mobile-frontend-talk-back-to-page": "Distreiñ d'ar bajenn \"$1\".",
"mobile-frontend-user-button-tooltip": "Diskouez ma c'hemennoù",
"mobile-frontend-user-newmessages": "Kemennadennoù nevez hoc'h eus war ho pajenn gaozeal"
}
}

View File

@ -1,9 +1,11 @@
{
"@metadata": {
"authors": []
"authors": [
"Imdadb"
]
},
"mobile-frontend-editor-edit": "Radbadal",
"mobile-frontend-main-menu-login": "Drustírástí",
"mobile-frontend-placeholder": "{{SITENAME}} aŧí paŧŧa",
"mobile-frontend-random-button": "Saŧŧí"
}
}

View File

@ -1,6 +1,8 @@
{
"@metadata": {
"authors": []
"authors": [
"ⓝⓘⓙⓦⓜ"
]
},
"mobile-frontend-home-button": "न'"
}
}

View File

@ -1,12 +1,20 @@
{
"@metadata": {
"authors": []
"authors": [
"DzWiki",
"KWiki",
"Palapa",
"Semso98",
"Srdjan m"
]
},
"mobile-frontend-cookies-required": "Kolačići moraju biti uključeni za mijenjanje načina pregleda. Uključite ih i pokušate ponovo.",
"mobile-frontend-editor-blocked-info-loggedin": "Vaš račun je blokiran za uređivanje. Blokadu je napravio {{GENDER:$2|$2}} iz sljedećih razloga: $1",
"mobile-frontend-editor-cta": "Pomozite poboljšati ovu stranicu!",
"minerva-pointer-dismiss": "Odbaci",
"mobile-frontend-editor-disabled": "Ova stranica je zaštićena da bi se spriječio vandalizam.",
"mobile-frontend-editor-edit": "Uredi",
"minerva-download": "Preuzmi",
"mobile-frontend-editor-redlink-create": "Napravi stranicu",
"mobile-frontend-editor-redlink-explain": "Ova stranica još uvijek nije napravljena.",
"mobile-frontend-editor-redlink-leave": "Ne, hvala.",
@ -16,7 +24,6 @@
"mobile-frontend-editor-unavailable": "Vaš preglednik ne podržava mobilnо uređivanjе. Pokušajtе sa drugim preglednikom.",
"mobile-frontend-editor-undo-unsupported": "Poništavanje trenutno nije podržano na mobilnim uređajima.",
"mobile-frontend-editor-uploadenable": "Da biste omogućili uređivanje, najprije postavite sliku.",
"mobile-frontend-footer-sitename": "{{SITENAME}}",
"mobile-frontend-history": "Vidi historiju izmjena ove stranice.",
"mobile-frontend-home-button": "Početna",
"mobile-frontend-language-article-heading": "Pročitaj na drugom jeziku",
@ -50,4 +57,4 @@
"mobile-frontend-user-page-talk": "Razgovor",
"mobile-frontend-user-page-uploads": "Postavljanja",
"skinname-minerva": "Minerva"
}
}

View File

@ -41,7 +41,7 @@
"mobile-frontend-main-menu-watchlist": "Llista de seguiment",
"mobile-frontend-meta-data-issues": "Problemes de la pàgina",
"mobile-frontend-meta-data-issues-categories": "Sobre aquesta categoria",
"mobile-frontend-meta-data-issues-header": "Incidències",
"mobile-frontend-meta-data-issues-header": "Problemes",
"mobile-frontend-meta-data-issues-header-talk": "Sobre aquesta pàgina",
"mobile-frontend-meta-data-issues-talk": "Sobre aquesta pàgina de discussió",
"mobile-frontend-pageaction-edit-tooltip": "Modifica la capçalera d'aquesta pàgina.",

View File

@ -1,6 +1,8 @@
{
"@metadata": {
"authors": []
"authors": [
"Bentong Isles"
]
},
"mobile-frontend-editor-edit": "Usba",
"mobile-frontend-home-button": "Unang Panid",
@ -13,4 +15,4 @@
"mobile-frontend-pageaction-edit-tooltip": "Usba ang nag-unang seksyon ning maong panid.",
"mobile-frontend-placeholder": "Pangitaa {{SITENAME}}",
"mobile-frontend-random-button": "Bisan Unsa"
}
}

View File

@ -1,6 +1,8 @@
{
"@metadata": {
"authors": []
"authors": [
"Sainbainvv"
]
},
"mobile-frontend-editor-edit": "編輯"
}
}

View File

@ -1,6 +1,11 @@
{
"@metadata": {
"authors": []
"authors": [
"Asoxor",
"Calak",
"Sarchia",
"Épine"
]
},
"mobile-frontend-editor-blocked-info-loggedin": "ھەژمارەکەت بەربەستکراوە لە دەستکاریکردن. بەربەستەکە ئەنجام دراوە لەلایەن {{GENDER:$2|$2}} لەبەر ئەم ھۆکارانە: $1",
"mobile-frontend-editor-cta": "یارمەتی باشترکردنی ئەم پەڕەیە بدە!",
@ -36,4 +41,4 @@
"mobile-frontend-placeholder": "بگەڕێ لە {{SITENAME}}دا",
"mobile-frontend-random-button": "بە ھەڵکەوت",
"mobile-frontend-user-page-uploads": "بارکردنەکان"
}
}

View File

@ -1,6 +1,8 @@
{
"@metadata": {
"authors": []
"authors": [
"Jun Misugi"
]
},
"mobile-frontend-editor-edit": "Mudificà"
}
}

View File

@ -1,9 +1,12 @@
{
"@metadata": {
"authors": []
"authors": [
"Danvintius Bookix",
"Don Alessandro"
]
},
"mobile-frontend-editor-edit": "Денъиштир",
"mobile-frontend-history": "Бу саифенинъ денъиштирильме тарихыны косьтер.",
"mobile-frontend-language-article-heading": "Башкъа тильде окъу",
"mobile-frontend-main-menu-login": "Кириш"
}
}

View File

@ -1,8 +1,10 @@
{
"@metadata": {
"authors": []
"authors": [
"Don Alessandro"
]
},
"mobile-frontend-history": "Bu saifeniñ deñiştirilme tarihını köster.",
"mobile-frontend-language-article-heading": "Başqa tilde oqu",
"mobile-frontend-main-menu-login": "Kiriş"
}
}

View File

@ -15,6 +15,7 @@
"mobile-frontend-cookies-required": "Pro přepnutí verzí jsou vyžadovány cookies. Povolte je a zkuste to znovu.",
"mobile-frontend-editor-blocked-info-loggedin": "Vašemu uživatelskému účtu byla zablokována možnost editace. Zablokování {{GENDER:$2|provedl|provedla}} $2 s následujícím zdůvodněním: $1",
"mobile-frontend-editor-cta": "Pomozte vylepšit tuto stránku!",
"minerva-pointer-dismiss": "Zavřít",
"mobile-frontend-editor-disabled": "Tato stránka je zamčena, aby se předešlo vandalismu.",
"mobile-frontend-editor-edit": "Editovat",
"mobile-frontend-editor-redlink-create": "Vytvořit stránku",

View File

@ -1,9 +1,10 @@
{
"@metadata": {
"authors": []
"authors": [
"ОйЛ"
]
},
"mobile-frontend-editor-edit": "исправлѥниѥ",
"mobile-frontend-footer-sitename": "{{SITENAME}}",
"mobile-frontend-home-button": "главьна страница",
"mobile-frontend-language-article-heading": "дроугꙑ ѩꙁꙑкꙑ",
"mobile-frontend-logged-in-homepage-notification": "добрѣ прити · $1!",
@ -15,4 +16,4 @@
"mobile-frontend-meta-data-issues-header": "отѧжєниꙗ",
"mobile-frontend-placeholder": "{{SITENAME}} : исканиѥ",
"mobile-frontend-random-button": "въ нєꙁаапѫ"
}
}

View File

@ -1,9 +1,11 @@
{
"@metadata": {
"authors": []
"authors": [
"Chuvash2014"
]
},
"mobile-frontend-editor-edit": "Тӳрлет",
"mobile-frontend-home-button": "Киле",
"mobile-frontend-main-menu-login": "Кĕр",
"mobile-frontend-placeholder": "{{SITENAME}} шырамалли"
}
}

View File

@ -1,6 +1,10 @@
{
"@metadata": {
"authors": []
"authors": [
"Ham II",
"Lloffiwr",
"Robin Owain"
]
},
"mobile-frontend-editor-cta": "Helpwch wella'r dudalen hon!",
"mobile-frontend-editor-disabled": "Mae'r dudalen hon wedi ei gwarchod rhag cael ei fandaleiddio.",
@ -10,7 +14,6 @@
"mobile-frontend-editor-tutorial-summary": "Ceisiwch wella'r dudalen $1. Peidiwch â bod ofn cystrawen wici.",
"mobile-frontend-editor-unavailable": "Ar hyn o bryd, nid oes modd golygu â'ch porwr presennol o'r teclyn symudol. Ceisiwch ddefnyddio porwr gwahanol.",
"mobile-frontend-editor-undo-unsupported": "Ni ellir ddadwneud ar declynnau symudol, ar hyn o bryd.",
"mobile-frontend-footer-sitename": "{{SITENAME}}",
"mobile-frontend-history": "Gweld hanes golygu'r dudalen hon.",
"mobile-frontend-home-button": "Hafan",
"mobile-frontend-language-article-heading": "Darllen mewn iaith arall",
@ -28,4 +31,4 @@
"mobile-frontend-random-button": "Ar hap",
"mobile-frontend-talk-back-to-page": "Nôl i'r dudalen \"$1\".",
"mobile-frontend-user-button-tooltip": "Dangos fy hysbysiadau"
}
}

View File

@ -1,6 +1,8 @@
{
"@metadata": {
"authors": []
"authors": [
"Marcell0"
]
},
"mobile-frontend-editor-edit": "Bearbeiten"
}
}

View File

@ -1,6 +1,13 @@
{
"@metadata": {
"authors": []
"authors": [
"Asmen",
"Erdemaslancan",
"Gorizon",
"Gırd",
"Kumkumuk",
"Mirzali"
]
},
"mobile-frontend-editor-edit": "Bıvurne",
"mobile-frontend-editor-redlink-create": "Pele vıraze",
@ -8,7 +15,6 @@
"mobile-frontend-editor-redlink-leave": "Nê, teşekur.",
"mobile-frontend-editor-tutorial-cancel": "Nê, teşekur kenan",
"mobile-frontend-editor-tutorial-confirm": "Dest bıke vırnayış",
"mobile-frontend-footer-sitename": "{{SITENAME}}",
"mobile-frontend-home-button": "Keye",
"mobile-frontend-language-article-heading": "Yewbina zıwan de bıwane",
"mobile-frontend-language-change": "Zıwani bıvurne",
@ -32,4 +38,4 @@
"mobile-frontend-user-page-contributions": "İştıraki",
"mobile-frontend-user-page-talk": "Vatış",
"mobile-frontend-user-page-uploads": "Barkerdışi"
}
}

View File

@ -1,8 +1,9 @@
{
"@metadata": {
"authors": []
"authors": [
"Michawiki"
]
},
"mobile-frontend-footer-sitename": "{{SITENAME}}",
"mobile-frontend-home-button": "Start",
"mobile-frontend-language-article-heading": "W drugej rěcy cytaś",
"mobile-frontend-logged-in-homepage-notification": "Witaj, $1",
@ -16,4 +17,4 @@
"mobile-frontend-meta-data-issues-header": "Problemy",
"mobile-frontend-placeholder": "{{GRAMMAR:akuzatiw|{{SITENAME}}}} pśepytaś",
"mobile-frontend-random-button": "Pśipadny"
}
}

View File

@ -1,7 +1,5 @@
{
"@metadata": {
"authors": []
},
"@metadata": [],
"mobile-frontend-home-button": "Damin",
"mobile-frontend-random-button": "Songko"
}
}

View File

@ -1,6 +1,10 @@
{
"@metadata": {
"authors": []
"authors": [
"Nirajan pant",
"जनक राज भट्ट",
"रमेश सिंह बोहरा"
]
},
"mobile-frontend-editor-edit": "सम्पादन",
"mobile-frontend-home-button": "घर",
@ -13,4 +17,4 @@
"mobile-frontend-pageaction-edit-tooltip": "ये पानाका मुख्य भागलाई सम्पादन गर |",
"mobile-frontend-placeholder": "{{SITENAME}}मी खोज",
"mobile-frontend-random-button": "कोइ पन एक"
}
}

View File

@ -1,7 +1,9 @@
{
"@metadata": {
"authors": []
"authors": [
"Aguve"
]
},
"mobile-frontend-editor-edit": "Trɔe",
"mobile-frontend-random-button": "Ɖesiaɖe ko"
}
}

View File

@ -1,6 +1,8 @@
{
"@metadata": {
"authors": []
"authors": [
"Lévi"
]
},
"mobile-frontend-editor-edit": "Mudéfica"
}
}

View File

@ -1,16 +1,23 @@
{
"@metadata": {
"authors": []
"authors": [
"Geraki",
"Glavkos",
"Nikosguard",
"SucreRouge",
"ZaDiak",
"Ανώνυμος Βικιπαιδιστής"
]
},
"mobile-frontend-cookies-required": "Τα cookies είναι απαραίτητα για να αλλάξετε τρόπο προβολής. Παρακαλούμε ενεργοποιήστε τα και προσπαθήστε ξανά.",
"mobile-frontend-editor-blocked-info-loggedin": "Ο λογαριασμός σας έχει αποκλειστεί από την επεξεργασία. Η φραγή έγινε από {{GENDER:$2|τον $2|την $2}} για τον εξής λόγο: $1",
"mobile-frontend-editor-cta": "Βοηθήστε να βελτιωθεί αυτή η σελίδα!",
"minerva-pointer-dismiss": "Απόρριψη",
"mobile-frontend-editor-edit": "Επεξεργασία",
"mobile-frontend-editor-tutorial-cancel": "Όχι, ευχαριστώ",
"mobile-frontend-editor-tutorial-confirm": "Ξεκινήστε την επεξεργασία",
"mobile-frontend-editor-tutorial-summary": "Προσπαθήστε να βελτιώσετε την σελίδα $1. <br />Μη φοβάστε τη σήμανση.",
"mobile-frontend-editor-uploadenable": "Παρακαλούμε να ανεβάσετε μια φωτογραφία πρώτα, για να ενεργοποιήσετε την επεξεργασία.",
"mobile-frontend-footer-sitename": "{{SITENAME}}",
"mobile-frontend-history": "Προβολή ιστορικού επεξεργασιών αυτή της σελίδας",
"mobile-frontend-home-button": "Αρχική",
"mobile-frontend-language-article-heading": "Διαβάστε σε άλλη γλώσσα",
@ -31,4 +38,4 @@
"mobile-frontend-talk-back-to-page": "Επιστροφή στη σελίδα \"$1\".",
"mobile-frontend-user-newmessages": "Έχετε νέα μηνύματα στη σελίδα συζήτησής σας",
"mobile-frontend-user-page-contributions": "Συνεισφορές"
}
}

View File

@ -1,6 +1,8 @@
{
"@metadata": {
"authors": []
"authors": [
"Gloria sah"
]
},
"mobile-frontend-main-menu-login": "Intrèr"
}
}

View File

@ -1,6 +1,10 @@
{
"@metadata": {
"authors": []
"authors": [
"Anomie",
"Chase me ladies, I'm the Cavalry",
"Jagwar"
]
},
"mobile-frontend-console-recruit": "Maybe you can help! This is open source software and we need volunteers to help us build it, make it better and fix any bugs that you might be seeing in this JavaScript console!\n\nYou can find our backlog @ https://phabricator.wikimedia.org/project/profile/67/",
"mobile-frontend-editor-edit": "Edit",
@ -14,4 +18,4 @@
"mobile-frontend-pageaction-edit-tooltip": "Edit the lead section of this page.",
"mobile-frontend-placeholder": "Search {{SITENAME}}",
"mobile-frontend-random-button": "Random"
}
}

View File

@ -1,10 +1,14 @@
{
"@metadata": {
"authors": []
"authors": [
"KuboF",
"Lucas",
"Robin van der Vliet",
"Yekrats"
]
},
"mobile-frontend-editor-edit": "Redakti",
"mobile-frontend-editor-tutorial-cancel": "Ne, dankon",
"mobile-frontend-footer-sitename": "{{SITENAME}}",
"mobile-frontend-home-button": "Ĉefpaĝo",
"mobile-frontend-language-article-heading": "Legi en alia lingvo",
"mobile-frontend-language-change": "Ŝanĝi lingvon",
@ -21,4 +25,4 @@
"mobile-frontend-pageaction-edit-tooltip": "Redakti la unuan sekcion de ĉi tiu paĝo.",
"mobile-frontend-placeholder": "Serĉi tra {{SITENAME}}",
"mobile-frontend-random-button": "Hazarde"
}
}

View File

@ -13,9 +13,10 @@
]
},
"minerva-last-modified-date": "Última edición el $1 a las $2",
"minerva-talk-add-topic": "Añadir discusión",
"mobile-frontend-console-recruit": "\\o/ ¡Ey! Esto es software de código abierto y necesitamos voluntarios que nos ayuden a construirlo, mejorarlo y corregir los posibles errores que puedas encontrar en esta consola de JavaScript.\n\nPuedes ver el trabajo pendiente en https://phabricator.wikimedia.org/project/profile/67/",
"mobile-frontend-cookies-required": "Se requieren \"cookies\" para cambiar los modos de visualización. Habilítalas y vuelve a intentarlo.",
"mobile-frontend-editor-blocked-info-loggedin": "Tu cuenta está bloqueada para editar. El bloqueo lo realizó {{GENDER:$2|$2}} por el siguiente motivo: $1.",
"mobile-frontend-cookies-required": "Las «cookies» permiten cambiar entre los modos de visualización. Actívalas e inténtalo de nuevo.",
"mobile-frontend-editor-blocked-info-loggedin": "Tu cuenta tiene impedido editar. El bloqueo lo realizó {{GENDER:$2|$2}} por el siguiente motivo: $1.",
"mobile-frontend-editor-cta": "¡Ayúdanos a mejorar esta página!",
"minerva-pointer-dismiss": "Descartar",
"mobile-frontend-editor-disabled": "Esta página está protegida para evitar el vandalismo.",
@ -36,29 +37,29 @@
"mobile-frontend-language-change": "Cambiar idioma",
"mobile-frontend-languages-not-available": "Esta página no está disponible en otros idiomas.",
"mobile-frontend-logged-in-homepage-notification": "¡{{GENDER:$1|Bienvenido|Bienvenida}}, $1!",
"mobile-frontend-main-menu-button-tooltip": "Abrir el menú principal",
"mobile-frontend-main-menu-button-tooltip": "Abrir menú principal",
"mobile-frontend-main-menu-contributions": "Contribuciones",
"mobile-frontend-main-menu-login": "Acceder",
"mobile-frontend-main-menu-logout": "Salir",
"mobile-frontend-main-menu-nearby": "Cercano",
"mobile-frontend-main-menu-nearby": "Cercanos",
"mobile-frontend-main-menu-settings": "Configuración",
"mobile-frontend-main-menu-watchlist": "Lista de seguimiento",
"mobile-frontend-meta-data-issues": "Problemas de la página",
"mobile-frontend-meta-data-issues-categories": "Acerca de esta categoría",
"mobile-frontend-meta-data-issues-header": "Incidencias",
"mobile-frontend-meta-data-issues-header": "Problemas",
"mobile-frontend-meta-data-issues-header-talk": "Acerca de esta página",
"mobile-frontend-meta-data-issues-talk": "Acerca de esta página de discusión",
"mobile-frontend-notifications-filter": "Filtro",
"mobile-frontend-pageaction-edit-tooltip": "Editar la sección introductoria de esta página.",
"mobile-frontend-pageaction-edit-tooltip": "Editar la sección introductoria de esta página",
"mobile-frontend-placeholder": "Buscar en {{SITENAME}}",
"mobile-frontend-random-button": "Aleatorio",
"mobile-frontend-random-button": "Al azar",
"mobile-frontend-redirected-from": "Redirigido de «$1»",
"mobile-frontend-talk-back-to-filepage": "Volver al archivo \"$1\".",
"mobile-frontend-talk-back-to-page": "Regresar a la página \"$1\".",
"mobile-frontend-talk-back-to-projectpage": "Volver a la página del proyecto \"$1\".",
"mobile-frontend-talk-back-to-filepage": "Volver al archivo «$1».",
"mobile-frontend-talk-back-to-page": "Volver a la página «$1».",
"mobile-frontend-talk-back-to-projectpage": "Volver a la página de proyecto «$1».",
"mobile-frontend-talk-back-to-userpage": "Volver a la página {{GENDER:$1|del usuario|de la usuaria}} «$1».",
"mobile-frontend-user-button-tooltip": "Mostrar mis notificaciones",
"mobile-frontend-user-newmessages": "Tienes nuevos mensajes en tu página de discusión",
"mobile-frontend-user-newmessages": "Tienes mensajes nuevos en tu página de discusión",
"mobile-frontend-user-page-contributions": "Contribuciones",
"mobile-frontend-user-page-member-since": "{{GENDER:$2|Se unió}} el $1",
"mobile-frontend-user-page-talk": "Discusión",

View File

@ -1,6 +1,9 @@
{
"@metadata": {
"authors": []
"authors": [
"Avjoska",
"Pikne"
]
},
"mobile-frontend-cookies-required": "Et vaaterežiimi vahetada, on vaja küpsiseid. Palun luba need ja proovi uuesti.",
"mobile-frontend-editor-blocked-info-loggedin": "Sinu kontol on redigeerimine blokeeritud. Blokeerinud $2 järgmise põhjendusega: $1",
@ -47,4 +50,4 @@
"mobile-frontend-user-page-member-since": "{{GENDER:$2|Registreerunud}}: $1",
"mobile-frontend-user-page-talk": "Arutelu",
"mobile-frontend-user-page-uploads": "Üleslaadimised"
}
}

View File

@ -1,8 +1,10 @@
{
"@metadata": {
"authors": []
"authors": [
"Crucifunked"
]
},
"mobile-frontend-editor-edit": "Eital",
"mobile-frontend-home-button": "Encetu",
"mobile-frontend-random-button": "Aleatóriu"
}
}

View File

@ -1,10 +1,11 @@
{
"@metadata": {
"authors": []
"authors": [
"EileenSanda"
]
},
"mobile-frontend-editor-edit": "Rætta",
"mobile-frontend-editor-tutorial-confirm": "Byrja við at skriva",
"mobile-frontend-footer-sitename": "{{SITENAME}}",
"mobile-frontend-home-button": "Heim",
"mobile-frontend-language-article-heading": "Les á øðrum máli",
"mobile-frontend-logged-in-homepage-notification": "Vælkomin, $1!",
@ -20,4 +21,4 @@
"mobile-frontend-placeholder": "Leita á {{SITENAME}}",
"mobile-frontend-random-button": "Tilvildarlig",
"mobile-frontend-user-button-tooltip": "Vís mínar fráboðanir"
}
}

View File

@ -13,12 +13,14 @@
"Sherbrooke",
"Urhixidur",
"Weft",
"Wladek92"
"Wladek92",
"Thibaut120094",
"Verdy p"
]
},
"minerva-last-modified-date": "Dernière modification le $1, à $2",
"minerva-talk-add-topic": "Ajouter une discussion",
"mobile-frontend-console-recruit": "\\o/ Hé! Ceci est un logiciel ouvert et nous avons besoin de volontaires pour nous aider à le construire, laméliorer et résoudre les anomalies que vous pourriez trouver dans cette console JavaScript!\n\nVous pouvez consulter notre journal de tâches à faire sur https://phabricator.wikimedia.org/project/view/67/",
"mobile-frontend-console-recruit": "\\o/ Hé! Ceci est un logiciel open source et nous avons besoin de volontaires pour nous aider à le construire, laméliorer et résoudre les anomalies que vous pourriez trouver dans cette console JavaScript!\n\nVous pouvez consulter notre journal de tâches à faire sur https://phabricator.wikimedia.org/project/view/67/",
"mobile-frontend-cookies-required": "Les témoins (cookies) sont nécessaires pour basculer entre les modes daffichage. Veuillez les autoriser et réessayer.",
"mobile-frontend-editor-blocked-info-loggedin": "Votre compte est bloqué et ne peut faire de modifications. Le blocage a été mis en place par {{GENDER:$2|$2}} pour la raison suivante : $1",
"mobile-frontend-editor-cta": "Aidez à améliorer cette page!",
@ -31,8 +33,8 @@
"mobile-frontend-editor-redlink-leave": "Non merci.",
"mobile-frontend-editor-tutorial-cancel": "Non merci",
"mobile-frontend-editor-tutorial-confirm": "Commencer à modifier",
"mobile-frontend-editor-tutorial-summary": "Essayez daméliorer la page $1.<br />Nayez pas peur du balisage.",
"mobile-frontend-editor-unavailable": "La modification via mobile nest actuellement pas disponible sur votre navigateur. Veuillez essayer un autre navigateur.",
"mobile-frontend-editor-tutorial-summary": "Essayez daméliorer la page $1.<br /> Nayez pas peur du balisage.",
"mobile-frontend-editor-unavailable": "La modification depuis un mobile nest actuellement pas disponible pour votre navigateur. Veuillez essayer un autre navigateur.",
"mobile-frontend-editor-undo-unsupported": "Lannulation nest pour le moment pas prise en charge sur les terminaux mobiles.",
"mobile-frontend-editor-uploadenable": "Veuillez dabord téléverser une photo pour autoriser la modification.",
"mobile-frontend-history": "Afficher lhistorique des modifications de cette page.",
@ -40,7 +42,7 @@
"mobile-frontend-language-article-heading": "Lire dans une autre langue",
"mobile-frontend-language-change": "Changer de langue",
"mobile-frontend-languages-not-available": "Cette page nest pas disponible dans les autres langues.",
"mobile-frontend-logged-in-homepage-notification": "{{GENDER:$1|Bienvenue}}, $1!",
"mobile-frontend-logged-in-homepage-notification": "Bienvenue, {{GENDER:$1|}}$1!",
"mobile-frontend-main-menu-button-tooltip": "Ouvrir le menu principal",
"mobile-frontend-main-menu-contributions": "Contributions",
"mobile-frontend-main-menu-login": "Connexion",
@ -54,18 +56,18 @@
"mobile-frontend-meta-data-issues-header-talk": "À propos de cette page",
"mobile-frontend-meta-data-issues-talk": "À propos de cette page de discussion",
"mobile-frontend-notifications-filter": "Filtrer",
"mobile-frontend-pageaction-edit-tooltip": "Modifier la section d'introduction de cette page",
"mobile-frontend-pageaction-edit-tooltip": "Modifier la section dintroduction de cette page",
"mobile-frontend-placeholder": "Rechercher sur {{SITENAME}}",
"mobile-frontend-random-button": "Au hasard",
"mobile-frontend-redirected-from": "Redirigé depuis « $1»",
"mobile-frontend-talk-back-to-filepage": "Retour au fichier « $1».",
"mobile-frontend-talk-back-to-page": "Revenir à la page « $1».",
"mobile-frontend-talk-back-to-projectpage": "Retour à la page du projet « $1».",
"mobile-frontend-talk-back-to-userpage": "Retour à la page utilisateur de « {{GENDER:$1|$1}} ».",
"mobile-frontend-talk-back-to-userpage": "Retour à la page d{{GENDER:$1|utilisateur|utilisatrice}} de « $1».",
"mobile-frontend-user-button-tooltip": "Afficher mes notifications",
"mobile-frontend-user-newmessages": "Vous avez de nouveaux messages sur votre page de discussion",
"mobile-frontend-user-page-contributions": "Contributions",
"mobile-frontend-user-page-member-since": "{{GENDER:$2|A rejoint}} le $1",
"mobile-frontend-user-page-member-since": "Inscrit{{GENDER:$2||e}} depuis le $1",
"mobile-frontend-user-page-talk": "Discussion",
"mobile-frontend-user-page-uploads": "Imports",
"minerva-skin-desc": "Un habillage réactif conçu pour les mobiles"

View File

@ -1,6 +1,8 @@
{
"@metadata": {
"authors": []
"authors": [
"Hangmanwa7id"
]
},
"mobile-frontend-editor-edit": "Changer",
"mobile-frontend-home-button": "Accueil",
@ -9,4 +11,4 @@
"mobile-frontend-main-menu-watchlist": "Mes pages guettées",
"mobile-frontend-placeholder": "Charcher sur {{SITENAME}}",
"mobile-frontend-random-button": "Au hasard"
}
}

View File

@ -1,9 +1,10 @@
{
"@metadata": {
"authors": []
"authors": [
"ChrisPtDe"
]
},
"mobile-frontend-editor-edit": "Changiér",
"mobile-frontend-footer-sitename": "{{SITENAME}}",
"mobile-frontend-home-button": "Reçua",
"mobile-frontend-language-article-heading": "Liére dens nôtra lengoua",
"mobile-frontend-logged-in-homepage-notification": "Benvegnua, $1 !",
@ -18,4 +19,4 @@
"mobile-frontend-pageaction-edit-tooltip": "Changiér la sèccion fil dirèctor de cela pâge.",
"mobile-frontend-placeholder": "Rechèrchiér dessus {{SITENAME}}",
"mobile-frontend-random-button": "A lhasârd"
}
}

View File

@ -1,6 +1,8 @@
{
"@metadata": {
"authors": []
"authors": [
"Murma174"
]
},
"mobile-frontend-editor-cta": "Halep mä an ferbeedre det sidj!",
"mobile-frontend-editor-disabled": "Detdiar sidj as seekert wurden, am wandaalen tu ferhanrin.",
@ -9,7 +11,6 @@
"mobile-frontend-editor-tutorial-summary": "Wees ei baang föör markup-spriak.\nFerschük, det sidj \"$1\" beeder tu maagin.",
"mobile-frontend-editor-unavailable": "Mä dan browser könst dü uun uugenblak ei mobiil werke.\nFerschük det mä en öödern browser.",
"mobile-frontend-editor-undo-unsupported": "Det turagsaaten wort tu tidj faan mobiil aperooten noch ei tuläät.",
"mobile-frontend-footer-sitename": "{{SITENAME}}",
"mobile-frontend-history": "Ferluup faan detdiar sidj uunluke.",
"mobile-frontend-home-button": "Tüs",
"mobile-frontend-language-article-heading": "Uun en ööder spriak lees",
@ -27,4 +28,4 @@
"mobile-frontend-random-button": "Tufaal",
"mobile-frontend-talk-back-to-page": "Turag tu det sidj \"$1\".",
"mobile-frontend-user-button-tooltip": "Min bööd uunwise"
}
}

View File

@ -1,6 +1,8 @@
{
"@metadata": {
"authors": []
"authors": [
"Tocaibon"
]
},
"mobile-frontend-editor-cta": "Jude a migliorâ cheste pagjine",
"mobile-frontend-editor-edit": "Modifiche",
@ -14,4 +16,4 @@
"mobile-frontend-pageaction-edit-tooltip": "Modifiche la prime sezion di cheste pagjine",
"mobile-frontend-placeholder": "Cîr in {{SITENAME}}",
"mobile-frontend-random-button": "Casuâl"
}
}

View File

@ -1,9 +1,11 @@
{
"@metadata": {
"authors": []
"authors": [
"Tem",
"පසිඳු කාවින්ද"
]
},
"mobile-frontend-editor-edit": "Cuir in Eagar",
"mobile-frontend-footer-sitename": "{{SITENAME}}",
"mobile-frontend-home-button": "Baile",
"mobile-frontend-language-article-heading": "Léigh i dteanga eile",
"mobile-frontend-main-menu-button-tooltip": "Osclóidh seo an príomhroghchlár",
@ -12,4 +14,4 @@
"mobile-frontend-main-menu-settings": "Sainroghanna",
"mobile-frontend-main-menu-watchlist": "Liosta faire",
"mobile-frontend-random-button": "Fánach"
}
}

View File

@ -1,6 +1,8 @@
{
"@metadata": {
"authors": []
"authors": [
"Laetitia Kb"
]
},
"mobile-frontend-editor-edit": "Modifié",
"mobile-frontend-home-button": "Akèy",
@ -11,4 +13,4 @@
"mobile-frontend-main-menu-settings": "Opsion",
"mobile-frontend-placeholder": "Chèché {{SITENAME}}",
"mobile-frontend-random-button": "Aza"
}
}

View File

@ -1,10 +1,13 @@
{
"@metadata": {
"authors": []
"authors": [
"GunChleoc"
]
},
"mobile-frontend-cookies-required": "Tha briosgaidean riatanach gus leum a ghearradh eadar modhan an t-seallaidh. Cuir an comas iad 's feuch ris a-rithist.",
"mobile-frontend-editor-blocked-info-loggedin": "Chan fhaod an cunntas agad deasachadh. Chaidh a bhacadh le {{GENDER:$2|$2}} air an adhbhar seo: $1",
"mobile-frontend-editor-cta": "Cuidich dhuinn gus piseach a thoirt air an duilleag seo!",
"minerva-pointer-dismiss": "Leig seachad",
"mobile-frontend-editor-disabled": "Chaidh an duilleag seo a dhìon gus bhandalachd a bhacadh.",
"mobile-frontend-editor-edit": "Deasaich",
"mobile-frontend-editor-redlink-create": "Cruthaich duilleag",
@ -15,7 +18,6 @@
"mobile-frontend-editor-unavailable": "Chan eil deasachadh inneil-làimhe ri fhaighinn airson a' bhrabhsair agad. Feuch brabhsair eile.",
"mobile-frontend-editor-undo-unsupported": "Chan eil taic ri neo-dhèanamh ri fhaighinn air innealan-làimhe fhathast.",
"mobile-frontend-editor-uploadenable": "Luchdaich suas dealbh an toiseach gus deasachadh a chur an comas.",
"mobile-frontend-footer-sitename": "{{SITENAME}}",
"mobile-frontend-history": "Seall eachdraidh deasachadh na duilleige seo",
"mobile-frontend-home-button": "Dhachaigh",
"mobile-frontend-language-article-heading": "Leugh seo ann an cànan eile",
@ -44,4 +46,4 @@
"mobile-frontend-user-page-member-since": "'Na b(h)all o chionn $1",
"mobile-frontend-user-page-talk": "Deasbaireachd",
"mobile-frontend-user-page-uploads": "Luchdaidhean suas"
}
}

View File

@ -1,6 +1,9 @@
{
"@metadata": {
"authors": []
"authors": [
"V6rg",
"شیخ"
]
},
"mobile-frontend-editor-edit": "دچينواچين",
"mobile-frontend-home-button": "خؤنه",
@ -14,4 +17,4 @@
"mobile-frontend-pageaction-edit-tooltip": "اي ولگˇ أولي وابينه دچينواچين گۊدن.",
"mobile-frontend-placeholder": "{{SITENAME}} مئنه وامتن",
"mobile-frontend-random-button": "کترئي"
}
}

View File

@ -1,6 +1,8 @@
{
"@metadata": {
"authors": []
"authors": [
"Hugo.arg"
]
},
"mobile-frontend-editor-edit": "Jehaijey"
}
}

View File

@ -1,6 +1,10 @@
{
"@metadata": {
"authors": []
"authors": [
"Darshan kandolkar",
"The Discoverer",
"Vaishali Parab"
]
},
"mobile-frontend-editor-edit": "बदल",
"mobile-frontend-home-button": "घर",
@ -13,4 +17,4 @@
"mobile-frontend-pageaction-edit-tooltip": "ह्या पानाच्या मुखेल भागाचें संपादन करात.",
"mobile-frontend-placeholder": "{{SITENAME}}आन सोदात",
"mobile-frontend-random-button": "खंयचेंय आदलें मदलें"
}
}

View File

@ -1,6 +1,8 @@
{
"@metadata": {
"authors": []
"authors": [
"Marwan Mohamad"
]
},
"mobile-frontend-editor-edit": "Boli'o",
"mobile-frontend-home-button": "Duledehu",
@ -13,4 +15,4 @@
"mobile-frontend-pageaction-edit-tooltip": "Boli'a tayadu bungaliyo lo halaman botiye.",
"mobile-frontend-placeholder": "Lolohe {{SITENAME}}",
"mobile-frontend-random-button": "Totoonula"
}
}

18
i18n/got.json Normal file
View File

@ -0,0 +1,18 @@
{
"@metadata": {
"authors": [
"Gothicspeaker"
]
},
"mobile-frontend-editor-edit": "𐌹𐌽𐌼𐌰𐌹𐌳𐌴𐌹",
"mobile-frontend-home-button": "𐌲𐌰𐍂𐌳𐍃",
"mobile-frontend-language-article-heading": "𐌿𐍃𐍃𐌹𐌲𐌲𐍅 𐌹𐌽 𐌰𐌽𐌸𐌰𐍂𐌰𐌹 𐍂𐌰𐌶𐌳𐌰𐌹",
"mobile-frontend-main-menu-button-tooltip": "𐌿𐍃𐌻𐌿𐌺 𐌷𐌰𐌿𐌱𐌹𐌳𐌰𐍅𐌰𐌻𐌴𐌹𐌽𐌹𐍅𐌹𐌺𐍉𐌽",
"mobile-frontend-main-menu-login": "𐌰𐍄𐌲𐌰𐌲𐌲",
"mobile-frontend-main-menu-nearby": "𐌽𐌴𐍈𐌰",
"mobile-frontend-main-menu-settings": "𐌻𐌰𐌲𐌴𐌹𐌽𐍉𐍃",
"mobile-frontend-main-menu-watchlist": "𐌻𐌰𐌹𐍃𐍄𐌰𐍅𐌹𐌺𐍉",
"mobile-frontend-pageaction-edit-tooltip": "𐌹𐌽𐌼𐌰𐌹𐌳𐌴𐌹 𐍄𐌹𐌿𐌷𐌰𐌽𐌳𐌴𐌹𐌽 𐌳𐌰𐌹𐌻 𐌸𐌹𐍃 𐌻𐌰𐌿𐌱𐌹𐍃",
"mobile-frontend-placeholder": "𐍃𐍉𐌺𐌴𐌹 {{SITENAME}}",
"mobile-frontend-random-button": "𐌸𐌿𐍃 𐌿𐌽𐌺𐌿𐌽𐌸"
}

View File

@ -1,6 +1,9 @@
{
"@metadata": {
"authors": []
"authors": [
"Gts-tg",
"JoostBotman"
]
},
"mobile-frontend-editor-edit": "Ἐκδὀς",
"mobile-frontend-home-button": "Κυρία",
@ -13,4 +16,4 @@
"mobile-frontend-pageaction-edit-tooltip": "Μεταγράφειν τὸ κύριον μέρος ταύτης δέλτου.",
"mobile-frontend-placeholder": "Ζητεῖν {{SITENAME}}",
"mobile-frontend-random-button": "Εἰκαῖο"
}
}

View File

@ -1,9 +1,11 @@
{
"@metadata": {
"authors": []
"authors": [
"Als-Chlämens",
"Als-Holder"
]
},
"mobile-frontend-editor-edit": "Bearbeite",
"mobile-frontend-footer-sitename": "{{SITENAME}}",
"mobile-frontend-home-button": "Start",
"mobile-frontend-language-article-heading": "In ere andere Sproch läse",
"mobile-frontend-main-menu-button-tooltip": "Hauptmenü ufmache",
@ -17,4 +19,4 @@
"mobile-frontend-pageaction-edit-tooltip": "Due dr Yyfierirgsabschnitt fir die Syte bearbeite.",
"mobile-frontend-placeholder": "{{SITENAME}} dursueche",
"mobile-frontend-random-button": "Zuefall"
}
}

View File

@ -1,6 +1,14 @@
{
"@metadata": {
"authors": []
"authors": [
"Ashok modhvadia",
"Bhatakati aatma",
"KartikMistry",
"Mitulverma13",
"NehalDaveND",
"Sushant savla",
"Vyom"
]
},
"mobile-frontend-editor-blocked-info-loggedin": "તમારા ખાતા પર {{GENDER:$2|$2}} એ $1 ને કારણે પ્રતિબંધ મુક્યો છે.",
"mobile-frontend-editor-cta": "આ પાનું સુધારવા મદદ!",
@ -11,7 +19,6 @@
"mobile-frontend-editor-unavailable": "મોબાઇલ સંપાદન તમારા બ્રાઉઝર પર હાલમાં ઉપલબ્ધ નથી. અલગ બ્રાઉઝર પ્રયાસ કરો.",
"mobile-frontend-editor-undo-unsupported": "પૂર્વવત હાલમાં મોબાઇલ ઉપકરણો પર આધારભૂત નથી.",
"mobile-frontend-editor-uploadenable": "સંપાદન સક્રિય કરવા માટે પ્રથમ એક ફોટો અપલોડ કરો.",
"mobile-frontend-footer-sitename": "{{SITENAME}}",
"mobile-frontend-home-button": "ઘર",
"mobile-frontend-language-article-heading": "અન્ય ભાષામાં વાંચો",
"mobile-frontend-main-menu-button-tooltip": "મુખ્ય મેનુ ખોલો",
@ -26,4 +33,4 @@
"mobile-frontend-placeholder": "{{SITENAME}} શોધો",
"mobile-frontend-random-button": "ગમે તે",
"mobile-frontend-user-page-talk": "ચર્ચા"
}
}

View File

@ -1,7 +1,5 @@
{
"@metadata": {
"authors": []
},
"@metadata": [],
"mobile-frontend-home-button": "Balley",
"mobile-frontend-random-button": "Gyn tort"
}
}

View File

@ -1,9 +1,11 @@
{
"@metadata": {
"authors": []
"authors": [
"DonCamillo"
]
},
"mobile-frontend-editor-edit": "Gyara",
"mobile-frontend-home-button": "Marhabin",
"mobile-frontend-main-menu-settings": "Sigogi",
"mobile-frontend-random-button": "Randam"
}
}

View File

@ -1,6 +1,9 @@
{
"@metadata": {
"authors": []
"authors": [
"Hakka",
"唐吉訶德的侍從"
]
},
"mobile-frontend-editor-edit": "Phiên-siá",
"mobile-frontend-home-button": "Thèu-ya̍p",
@ -13,4 +16,4 @@
"mobile-frontend-pageaction-edit-tooltip": "Phiên-siá liá-ya̍p ke thô-ngièn chông-chiet",
"mobile-frontend-placeholder": "Sêu-chhìm {{SITENAME}}",
"mobile-frontend-random-button": "Sùi-kî"
}
}

View File

@ -1,7 +1,5 @@
{
"@metadata": {
"authors": []
},
"@metadata": [],
"mobile-frontend-home-button": "Home",
"mobile-frontend-random-button": "ʻOhi Kaulele"
}
}

View File

@ -15,6 +15,7 @@
"mobile-frontend-cookies-required": "दृश्य मोड को स्विच करने के लिए कुकीज की आवश्यकता है कृपया उन्हें सक्षम करें और पुनः प्रयास करें।",
"mobile-frontend-editor-blocked-info-loggedin": "आपका खाता संपादन से अवरुद्ध है। निम्न कारण से {{GENDER:$2|$2}} द्वारा ब्लॉक किया गया था: $1",
"mobile-frontend-editor-cta": "इस पृष्ठ को बेहतर बनाने में मदद करें!",
"minerva-pointer-dismiss": "हटायें",
"mobile-frontend-editor-disabled": "यह पृष्ठ बर्बरता को रोकने के लिए सुरक्षित है",
"mobile-frontend-editor-edit": "संपादित करें",
"mobile-frontend-editor-redlink-create": "पृष्ठ बनाएँ",

View File

@ -1,6 +1,9 @@
{
"@metadata": {
"authors": []
"authors": [
"Girmitya",
"Karthi.dr"
]
},
"mobile-frontend-editor-edit": "Badlo",
"mobile-frontend-home-button": "Pahila Panna",
@ -13,4 +16,4 @@
"mobile-frontend-pageaction-edit-tooltip": "Ii panna ke lead hissa ke badlo",
"mobile-frontend-placeholder": "{{SITENAME}} khojo",
"mobile-frontend-random-button": "Koi bhi"
}
}

View File

@ -1,6 +1,8 @@
{
"@metadata": {
"authors": []
"authors": [
"Redhotchili23"
]
},
"mobile-frontend-editor-edit": "Liwaton",
"mobile-frontend-home-button": "Balay",
@ -11,4 +13,4 @@
"mobile-frontend-main-menu-watchlist": "Balantayan",
"mobile-frontend-placeholder": "Pangitaa ang {{SITENAME}}",
"mobile-frontend-random-button": "Lagpat"
}
}

View File

@ -1,6 +1,8 @@
{
"@metadata": {
"authors": []
"authors": [
"Midnight Gambler"
]
},
"mobile-frontend-editor-edit": "Beoorbeite",
"mobile-frontend-home-button": "Startseit",
@ -10,4 +12,4 @@
"mobile-frontend-main-menu-watchlist": "Beobachtungslist",
"mobile-frontend-placeholder": "{{SITENAME}} doorrichsuche",
"mobile-frontend-random-button": "Zufällich"
}
}

View File

@ -1,13 +1,14 @@
{
"@metadata": {
"authors": []
"authors": [
"Michawiki"
]
},
"mobile-frontend-editor-cta": "Pomhaj, tutu stronu polěpšić!",
"mobile-frontend-editor-disabled": "Tuta strona je so škitała, zo by wandalizm wobešoł.",
"mobile-frontend-editor-edit": "Wobdźěłać",
"mobile-frontend-editor-tutorial-cancel": "Ně, dźakuju so",
"mobile-frontend-editor-tutorial-confirm": "Wobdźěłowanje započeć",
"mobile-frontend-footer-sitename": "{{SITENAME}}",
"mobile-frontend-history": "Historiju změnow tuteje strony pokazać.",
"mobile-frontend-home-button": "Start",
"mobile-frontend-language-article-heading": "W druhej rěči čitać",
@ -25,4 +26,4 @@
"mobile-frontend-random-button": "Připadny",
"mobile-frontend-talk-back-to-page": "Wróćo k stronje \"$1\".",
"mobile-frontend-user-button-tooltip": "Moje zdźělenki pokazać"
}
}

View File

@ -1,7 +1,11 @@
{
"@metadata": {
"authors": []
"authors": [
"Bfpage",
"Tisave"
]
},
"minerva-pointer-dismiss": "Rejte",
"mobile-frontend-editor-edit": "Chanje",
"mobile-frontend-home-button": "Paj prensipal",
"mobile-frontend-language-article-heading": "Li nan yon lòt lang",
@ -13,4 +17,4 @@
"mobile-frontend-pageaction-edit-tooltip": "Edit seksyon an plon nan paj sa a.",
"mobile-frontend-placeholder": "Chèche sou {{SITENAME}}",
"mobile-frontend-random-button": "Aleyatwa"
}
}

View File

@ -1,7 +1,9 @@
{
"@metadata": {
"authors": []
"authors": [
"R-Joe"
]
},
"mobile-frontend-main-menu-button-tooltip": "Főmenü megnyitása",
"mobile-frontend-main-menu-settings": "Beállítások"
}
}

View File

@ -13,8 +13,10 @@
"mobile-frontend-cookies-required": "A sütik szükségesek a módok közötti váltáshoz. Engedélyezd őket, majd próbáld újra.",
"mobile-frontend-editor-blocked-info-loggedin": "A fiókod blokkolva van a szerkesztéstől. A blokkot $2 állította be a következő okból: $1",
"mobile-frontend-editor-cta": "Segíts az oldal fejlesztésében!",
"minerva-pointer-dismiss": "Elrejt",
"mobile-frontend-editor-disabled": "Ez a lap védett vandalizmus-megelőzés végett.",
"mobile-frontend-editor-edit": "Szerkesztés",
"minerva-download": "Letöltés",
"mobile-frontend-editor-redlink-create": "Lap létrehozása",
"mobile-frontend-editor-redlink-explain": "Ezt a lapot még nem hozták létre.",
"mobile-frontend-editor-redlink-leave": "Nem, köszönöm.",

View File

@ -1,6 +1,9 @@
{
"@metadata": {
"authors": []
"authors": [
"McDutchie",
"Remux"
]
},
"mobile-frontend-cookies-required": "Cookies es necessari pro cambiar de modo de vista. Per favor activa los e reproba.",
"mobile-frontend-editor-cta": "Adjuta a meliorar iste pagina!",
@ -11,7 +14,6 @@
"mobile-frontend-editor-tutorial-summary": "Tenta meliorar le pagina $1.<br />Non sia intimidate per le codice.",
"mobile-frontend-editor-unavailable": "Modificar in modo mobile non es actualmente possibile in tu navigator. Per favor proba un altere navigator.",
"mobile-frontend-editor-undo-unsupported": "Disfacer non es actualmente possibile con dispositivos mobile.",
"mobile-frontend-footer-sitename": "{{SITENAME}}",
"mobile-frontend-history": "Vider le historia de modificationes de iste pagina.",
"mobile-frontend-home-button": "Initio",
"mobile-frontend-language-article-heading": "Leger in un altere lingua",
@ -29,4 +31,4 @@
"mobile-frontend-random-button": "Aleatori",
"mobile-frontend-talk-back-to-page": "Retornar al pagina \"$1\".",
"mobile-frontend-user-button-tooltip": "Monstrar mi notificationes"
}
}

View File

@ -17,6 +17,7 @@
"mobile-frontend-cookies-required": "Kuki dibutuhkan untuk mengganti tampilan. Silakan aktifkan kuki dan coba lagi.",
"mobile-frontend-editor-blocked-info-loggedin": "Akun Anda sedang diblokir dari penyuntingan. Pemblokiran dilakukan oleh {{GENDER:$2|$2}} karena alasan berikut ini: $1",
"mobile-frontend-editor-cta": "Bantu kembangkan halaman ini!",
"minerva-pointer-dismiss": "Tutup",
"mobile-frontend-editor-disabled": "Halaman ini dilindungi untuk mencegah vandalisme.",
"mobile-frontend-editor-edit": "Sunting",
"mobile-frontend-editor-redlink-create": "Buat halaman",

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