mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-24 06:24:22 +00:00
feat: add icon and text for addsection action (#368)
This commit is contained in:
parent
782a3fab09
commit
87756194fb
|
@ -26,6 +26,8 @@
|
|||
"citizen-footer-desc": "Edit this text on MediaWiki:Citizen-footer-desc",
|
||||
"citizen-footer-tagline": "Edit this text on MediaWiki:Citizen-footer-tagline",
|
||||
|
||||
"citizen-action-addsection": "Add topic",
|
||||
|
||||
"citizen-jumptotop": "Back to top",
|
||||
|
||||
"citizen-search-fulltext": "Search pages containing",
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
"citizen-drawer-search": "Placeholder and title text for search input on main menu",
|
||||
"citizen-footer-desc": "Edit this text on MediaWiki:Citizen-footer-desc",
|
||||
"citizen-footer-tagline": "Edit this text on MediaWiki:Citizen-footer-tagline",
|
||||
"citizen-action-addsection": "Used in the Citizen skin. See for example {{canonicalurl:Talk:Main_Page|useskin=vector}}\n{{Identical|Add topic}}. Same as vector-action-addsection in Vector skin.",
|
||||
"citizen-jumptotop": "Label for link to jump to top of page",
|
||||
"citizen-search-fulltext": "Fulltext search suggestion",
|
||||
"citizen-tagline-ns-talk": "Tagline for pages in talk namespace",
|
||||
|
@ -37,4 +38,5 @@
|
|||
"prefs-citizen-fontsize-label": "Label for the font size settings",
|
||||
"prefs-citizen-pagewidth-label": "Label for the page width settings",
|
||||
"prefs-citizen-resetbutton-label": "Label for the reset button that restore default settings"
|
||||
|
||||
}
|
||||
|
|
7
resources/skins.citizen.icons/shared/add.svg
Normal file
7
resources/skins.citizen.icons/shared/add.svg
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<title>
|
||||
add
|
||||
</title>
|
||||
<path d="M11 9V4H9v5H4v2h5v5h2v-5h5V9z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 198 B |
|
@ -255,7 +255,7 @@
|
|||
},
|
||||
"skins.citizen.icons.ca": {
|
||||
"class": "ResourceLoaderImageModule",
|
||||
"selector": "#ca-{name} > *:after",
|
||||
"selector": "#ca-{name} > a:after",
|
||||
"defaultColor": "#000",
|
||||
"images": {
|
||||
"view": "resources/skins.citizen.icons/shared/article.svg",
|
||||
|
@ -269,6 +269,7 @@
|
|||
"unprotect": "resources/skins.citizen.icons/shared/unLock.svg",
|
||||
"watch": "resources/skins.citizen.icons/shared/eye.svg",
|
||||
"unwatch": "resources/skins.citizen.icons/shared/eyeClosed.svg",
|
||||
"addsection": "resources/skins.citizen.icons/shared/add.svg",
|
||||
"talk": "resources/skins.citizen.icons/shared/discussion.svg",
|
||||
"nstab-main": "resources/skins.citizen.icons/shared/article.svg",
|
||||
"translate": "resources/skins.citizen.icons/shared/language.svg"
|
||||
|
@ -285,7 +286,7 @@
|
|||
},
|
||||
"skins.citizen.icons.n": {
|
||||
"class": "ResourceLoaderImageModule",
|
||||
"selector": "#n-{name} > *:after",
|
||||
"selector": "#n-{name} > a:after",
|
||||
"defaultColor": "#000",
|
||||
"images": {
|
||||
"mainpage-description": "resources/skins.citizen.icons/shared/home.svg",
|
||||
|
@ -296,7 +297,7 @@
|
|||
},
|
||||
"skins.citizen.icons.t": {
|
||||
"class": "ResourceLoaderImageModule",
|
||||
"selector": "#t-{name} > *:after",
|
||||
"selector": "#t-{name} > a:after",
|
||||
"defaultColor": "#000",
|
||||
"images": {
|
||||
"whatlinkshere": "resources/skins.citizen.icons/shared/whatlinkshere.svg",
|
||||
|
@ -314,7 +315,7 @@
|
|||
},
|
||||
"skins.citizen.icons.pt": {
|
||||
"class": "ResourceLoaderImageModule",
|
||||
"selector": "#pt-{name} > *:after",
|
||||
"selector": "#pt-{name} > a:after",
|
||||
"defaultColor": "#000",
|
||||
"images": {
|
||||
"mytalk": "resources/skins.citizen.icons/shared/userTalk.svg",
|
||||
|
|
Loading…
Reference in a new issue