jenkins-bot has submitted this change. ( 
https://gerrit.wikimedia.org/r/c/pywikibot/core/+/952554 )

Change subject: [L10N] Add content for "ckb" site code
......................................................................

[L10N] Add content for "ckb" site code

Change-Id: If735eef2544b6432cb301b306823728efee6119d
---
M scripts/commonscat.py
M scripts/noreferences.py
M scripts/nowcommons.py
M scripts/checkimages.py
M scripts/category_redirect.py
M scripts/unusedfiles.py
M scripts/imagetransfer.py
M scripts/welcome.py
8 files changed, 68 insertions(+), 4 deletions(-)

Approvals:
  Xqt: Looks good to me, approved
  jenkins-bot: Verified




diff --git a/scripts/category_redirect.py b/scripts/category_redirect.py
index 3736740..04153a6 100755
--- a/scripts/category_redirect.py
+++ b/scripts/category_redirect.py
@@ -86,6 +86,7 @@
             'ar': 'تصنيف:تحويلات تصنيفات ويكيبيديا',
             'ary': 'تصنيف:Wikipedia soft redirected categories',
             'arz': 'تصنيف:تحويلات تصانيف ويكيبيديا',
+            'ckb': 'پۆل:پۆلە ڕەوانەکراوە نەرمەکان',
             'cs': 'Kategorie:Údržba:Zastaralé kategorie',
             'da': 'Kategori:Omdirigeringskategorier',
             'en': 'Category:Wikipedia soft redirected categories',
diff --git a/scripts/checkimages.py b/scripts/checkimages.py
index 5470cef..1c4e69e 100755
--- a/scripts/checkimages.py
+++ b/scripts/checkimages.py
@@ -118,6 +118,7 @@
     'test': '{{No license}}',
     'ar': '{{subst:ملم}}',
     'arz': '{{subst:ملم}}',
+    'ckb': '{{subst:nld}}',
     'de': '{{Dateiüberprüfung}}',
     'en': '{{subst:nld}}',
     'fa': '{{subst:حق تکثیر تصویر نامعلوم}}',
@@ -149,6 +150,7 @@
     'test': ['{{no license'],
     'ar': ['{{لت', '{{لا ترخيص'],
     'arz': ['{{nld', '{{no license'],
+    'ckb': ['{{nld', '{{no license'],
     'de': ['{{DÜP', '{{Düp', '{{Dateiüberprüfung'],
     'en': ['{{nld', '{{no license'],
     'fa': ['{{حق تکثیر تصویر نامعلوم۲'],
@@ -175,6 +177,7 @@
     'meta': '{{Delete|The file has .%s as extension.}}',
     'ar': '{{شطب|الملف له .%s كامتداد.}}',
     'arz': '{{مسح|الملف له .%s كامتداد.}}',
+    'ckb': '{{سخ-مێتا|پەڕگەکە پاشگری «.%s»ی ھەیە.}}',
     'en': '{{db-meta|The file has .%s as extension.}}',
     'fa': '{{حذف سریع|تصویر %s اضافی است.}}',
     'ga': '{{scrios|Tá iarmhír .%s ar an comhad seo.}}',
@@ -192,7 +195,7 @@
 }

 # That's the text that the bot will add if it doesn't find the license.
-# Note: every __botnick__ will be repleaced with your bot's nickname
+# Note: every __botnick__ will be replaced with your bot's nickname
 # (feel free not to use if you don't need it)
 NOTHING_NOTIFICATION = {
     'commons': "\n{{subst:User:Filnik/untagged|File:%s}}\n\n''This message "
@@ -205,6 +208,7 @@
     'meta': '{{subst:No license notice|File:%s}}',
     'ar': '{{subst:مصدر الملف|File:%s}} --~~~~',
     'arz': '{{subst:file source|File:%s}} --~~~~',
+    'ckb': '{{subst:سەرچاوەی پەڕگە|پەڕگە:%s}} --~~~~',
     'en': '{{subst:file source|File:%s}} --~~~~',
     'fa': '{{subst:اخطار نگاره|%s}}',
     'ga': '{{subst:Foinse na híomhá|File:%s}} --~~~~',
@@ -261,6 +265,7 @@
 # Toolserver.
 PAGE_WITH_SETTINGS = {
     'commons': 'User:Filbot/Settings',
+    'ckb': 'User:AramBot/پەڕگەکان/ڕێکخستنەکان',
     'it': 'Progetto:Coordinamento/Immagini/Bot/Settings#Settings',
     'sr': 'User:KizuleBot/checkimages.py/подешавања',
     'zh': 'User:Alexbot/cisettings#Settings',
@@ -274,6 +279,7 @@
     'test': 'User:Pywikibot-test/Report',
     'ar': 'User:MenoBot/Report',
     'arz': 'User:MenoBot/Report',
+    'ckb': 'User:AramBot/پەڕگەکان/ڕاپۆڕت',
     'de': 'Benutzer:Xqbot/Report',
     'en': 'User:Filnik/Report',
     'fa': 'کاربر:Amirobot/گزارش تصویر',
@@ -306,6 +312,7 @@
     'test': ['Template:Information'],
     'ar': ['Template:معلومات'],
     'arz': ['Template:معلومات'],
+    'ckb': ['داڕێژە:زانیاری'],
     'de': ['Template:Information'],
     'en': ['Template:Information'],
     'fa': ['الگو:اطلاعات'],
@@ -425,9 +432,10 @@
 }
 
 # Add your project (in alphabetical order) if you want that the bot starts
-PROJECT_INSERTED = ['ar', 'arz', 'commons', 'de', 'en', 'fa', 'ga', 'hu', 'it',
-                    'ja', 'ko', 'ru', 'meta', 'sd', 'sr', 'ta', 'test', 'ur',
-                    'zh']
+PROJECT_INSERTED = [
+    'ar', 'arz', 'commons', 'ckb', 'de', 'en', 'fa', 'ga', 'hu', 'it', 'ja',
+    'ko', 'ru', 'meta', 'sd', 'sr', 'ta', 'test', 'ur', 'zh',
+]

 # END OF CONFIGURATION.

diff --git a/scripts/commonscat.py b/scripts/commonscat.py
index 361bb27..d01b6e4 100755
--- a/scripts/commonscat.py
+++ b/scripts/commonscat.py
@@ -168,6 +168,12 @@
     'arz': ['تحويل تصنيف', 'Category redirect', 'روابط شقيقة',
             'Sisterlinks', 'Sister project links'],
     'be-tarask': ['Commons', 'Commons category'],
+    'ckb': ['Category redirect', 'ڕەوانەکەری پۆل', 'Commons', 'کۆمنز',
+            'Commoncats', 'Commons category multi', 'Sisterlinks',
+            'Sister project links', 'بەستەری پرۆژە خوشکەکان',
+            'Tracking category', 'پۆلی شوێنکەوتن', 'Template category',
+            'پۆلی داڕێژە', 'Wikipedia category', 'Maintenance category',
+            'پۆلی ڕاگرتن'],
     'cs': ['Commons', 'Sestřičky', 'Sisterlinks'],
     'da': ['Commons', 'Commons left', 'Commons2', 'Commonsbilleder',
            'Commonskat', 'Commonscat2', 'GalleriCommons', 'Søsterlinks'],
diff --git a/scripts/imagetransfer.py b/scripts/imagetransfer.py
index a11c743..e0ceaf5 100755
--- a/scripts/imagetransfer.py
+++ b/scripts/imagetransfer.py
@@ -60,6 +60,7 @@
     'ar': '{{الآن كومنز|%s}}',
     'ary': '{{Now Commons|%s}}',
     'arz': '{{Now Commons|%s}}',
+    'ckb': '{{لە کۆمنز بەردەستە|%s}}',
     'de': '{{NowCommons|%s}}',
     'fr': '{{Désormais sur Commons|%s}}',
     'en': '{{subst:ncd|Image:%s}}',
@@ -91,6 +92,20 @@
         'ملكية عامة - فن': 'PD-Art',
         'ملكية عامة - الحكومة الأمريكية': 'PD-USGov',
     },
+    ('wikipedia:ckb', 'commons:commons'): {
+        'PD-because': 'PD',
+        'پاوانی گشتی-خۆ': 'PD-self',
+        'مۆڵەتنامەی گنو بۆ بەڵگە ئازادەکان': 'GFDL',
+        'مۆڵەتنامەی گنو بۆ بەڵگە ئازادەکان-خۆ': 'GFDL-self',
+        'پاوانی گشتی-ئێران': 'PD-Iran',
+        'PD-textlogo': 'PD-textlogo',
+        'پاوانی گشتی-عێراق': 'PD-Iraq',
+        'PD-UK': 'PD-UK',
+        'پاوانی گشتی-ھابڵ': 'PD-Hubble',
+        'پاوانی گشتی-ویلایەتە یەکگرتووەکان': 'PD-US',
+        'Cc-by-sa-2.5': 'Cc-by-sa-2.5',
+        'Cc-by-sa-3.0': 'Cc-by-3.0',
+    },
     ('wikipedia:de', 'commons:commons'): {
         'Bild-GFDL': 'GFDL',
         'Bild-GFDL-OpenGeoDB': 'GFDL-OpenGeoDB',
diff --git a/scripts/noreferences.py b/scripts/noreferences.py
index c361185..07a62e0 100755
--- a/scripts/noreferences.py
+++ b/scripts/noreferences.py
@@ -73,6 +73,12 @@
         'Enllaços externs',
         'Enllaços',
     ],
+    'ckb': [
+        'خوێندنەوەی زیاتر',
+        'بەستەرە دەرەکییەکان',
+        'ئەمانەش ببینە',
+        'تێبینییەکان'
+    ],
     'cs': [
         'Externí odkazy',
         'Poznámky',
@@ -261,6 +267,9 @@
         'ca': [
             'Referències',
         ],
+        'ckb': [
+            'سەرچاوەکان',
+        ],
         'cs': [
             'Reference',
             'Poznámky',
@@ -423,6 +432,8 @@
         'ca': ['Referències', 'Reflist', 'Listaref', 'Referència',
                'Referencies', 'Referències2',
                'Amaga', 'Amaga ref', 'Amaga Ref', 'Amaga Ref2', 'Apèndix'],
+        'ckb': ['Reflist', 'Refs', 'Reference', 'ژێدەرەکان', 'سەرچاوەکان',
+                'پەراوێز', 'پەراوێزەکان', 'پەڕاوێزەکان'],
         'da': ['Reflist'],
         'dsb': ['Referency'],
         'en': ['Reflist', 'Refs', 'FootnotesSmall', 'Reference',
@@ -472,6 +483,7 @@
         'ary': '{{مراجع}}',
         'arz': '{{مصادر}}',
         'be': '{{зноскі}}',
+        'ckb': '{{سەرچاوەکان}}',
         'da': '{{reflist}}',
         'dsb': '{{referency}}',
         'fa': '{{پانویس}}',
diff --git a/scripts/nowcommons.py b/scripts/nowcommons.py
index f0054f0..41e3fc8 100755
--- a/scripts/nowcommons.py
+++ b/scripts/nowcommons.py
@@ -67,6 +67,11 @@
         'الآن كومنز',
         'الآن كومونز',
     ],
+    'ckb': [
+        'لە کۆمنز بەردەستە',
+        'NowCommons',
+        'Ncd',
+    ],
     'de': [
         'NowCommons',
         'NC',
diff --git a/scripts/unusedfiles.py b/scripts/unusedfiles.py
index 4619760..12257a1 100755
--- a/scripts/unusedfiles.py
+++ b/scripts/unusedfiles.py
@@ -41,6 +41,7 @@
     'test': '{{Orphan file}}',
     'ar': '{{صورة يتيمة}}',
     'arz': '{{صوره يتيمه}}',
+    'ckb': '{{سخ-پ٥|ڕێکەوت={{subst:ڕێکەوت}}}}',
     'en': '{{Orphan image}}',
     'fa': '{{تصاویر بدون استفاده}}',
     'id': '{{Berkas yatim}}',
@@ -57,6 +58,7 @@
     'test': '{{User:Happy5214/Unused file notice (user)|%(title)s}}',
     'ar': '{{subst:تنبيه صورة يتيمة|%(title)s}}',
     'arz': '{{subst:تنبيه صوره يتيمه|%(title)s}}',
+    'ckb': '{{subst:سخ-پ٥-ئاگاداری|1=%(title)s}}',
     'fa': '{{subst:اخطار به کاربر برای تصاویر بدون استفاده|%(title)s}}',
     'ur': '{{subst:اطلاع برائے غیر مستعمل تصاویر|%(title)s}}',
 }
diff --git a/scripts/welcome.py b/scripts/welcome.py
index 80a6a67..e011f39 100755
--- a/scripts/welcome.py
+++ b/scripts/welcome.py
@@ -196,6 +196,7 @@
 # ATTENTION: Projects not listed won't write a log to the wiki.
 LOGBOOK = {
     'ar': 'Project:سجل الترحيب',
+    'ckb': 'Project:لۆگی بەخێرھاتن',
     'fr': ('Wikipedia:Prise de décision/'
            'Accueil automatique des nouveaux par un robot/log'),
     'ga': 'Project:Log fáilte',
@@ -223,6 +224,7 @@
         'ba': '{{Hello}} %s',
         'bn': '{{subst:স্বাগতম/বট}} %s',
         'bs': '{{Dobrodošlica}} %s',
+        'ckb': '{{subst:بەخێرھاتن}} %s',
         'da': '{{velkommen|%s}}',
         'de': '{{subst:willkommen}} %s',
         'en': '{{subst:welcome}} %s',
@@ -304,6 +306,7 @@
     'wikipedia': {
         'am': 'User:Beria/Report',
         'ar': 'Project:إخطار الإداريين/أسماء مستخدمين للفحص',
+        'ckb': 'Project:لۆگی بەخێرھاتن/پشکنینی ناوی بەکارھێنەران',
         'da': 'Bruger:Broadbot/Report',
         'en': 'Project:Administrator intervention against vandalism',
         'fa': 'Project:تابلوی اعلانات مدیران/گزارش ربات',
@@ -329,6 +332,7 @@
     'wikipedia': {
         'am': 'User:Beria/Bad_names',
         'ar': 'Project:سجل الترحيب/أسماء سيئة',
+        'ckb': 'Project:لۆگی بەخێرھاتن/ناوە_خراپەکان',
         'en': 'Project:Welcome log/Bad_names',
         'fa': 'Project:سیاهه خوشامد/نام بد',
         'it': 'Project:Benvenuto_Bot/Lista_Badwords',
@@ -353,6 +357,7 @@
         'am': '\n*[[User talk:%s]]' + timeselected,
         'ar': '\n*{{user13|%s}}' + timeselected,
         'bs': '\n{{Korisnik|%s}}' + timeselected,
+        'ckb': '\n*{{بەستەرەکانی بەکارھێنەر|%s}} ' + timeselected,
         'da': '\n*[[Bruger Diskussion:%s]] ' + timeselected,
         'de': '\n*[[Benutzer Diskussion:%s]] ' + timeselected,
         'en': '\n*{{Userlinks|%s}} ' + timeselected,
@@ -375,6 +380,7 @@
     'am': 'User:Beria/Signatures',
     'ar': 'Project:سجل الترحيب/توقيعات',
     'ba': 'Ҡатнашыусы:Salamat bot/Ярҙам',
+    'ckb': 'Project:لۆگی بەخێرھاتن/واژوو',
     'da': 'Wikipedia:Velkommen/Signaturer',
     'en': 'Project:Welcome log/Sign',
     'fa': 'Project:سیاهه خوشامد/امضاها',

--
To view, visit https://gerrit.wikimedia.org/r/c/pywikibot/core/+/952554
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.wikimedia.org/r/settings

Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-Change-Id: If735eef2544b6432cb301b306823728efee6119d
Gerrit-Change-Number: 952554
Gerrit-PatchSet: 5
Gerrit-Owner: Aram <[email protected]>
Gerrit-Reviewer: D3r1ck01 <[email protected]>
Gerrit-Reviewer: Xqt <[email protected]>
Gerrit-Reviewer: jenkins-bot
Gerrit-MessageType: merged
_______________________________________________
Pywikibot-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to